/* 전체 배경: 보라색 대신 레몬&그린 그라데이션 적용 */
body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    /* 상큼한 레몬 옐로에서 부드러운 그린으로 이어지는 배경 */
    background: linear-gradient(135deg, #FFF59D 0%, #AED581 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

/* 카드 디자인 (첫 번째 형식 유지) */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* 그림자 색상을 부드럽게 조정 */
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 2px solid #DCEDC8; /* 아주 연한 그린 테두리 추가 */
}

/* 제목 및 텍스트 컬러를 테마에 맞게 조정 */
h1 { margin-bottom: 0.5rem; color: #33691E; } /* 진한 숲색 */
p { color: #666; margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.4; }

/* 입력창 디자인 */
.input-group { margin-bottom: 1.5rem; text-align: left; }
label { display: block; margin-bottom: 0.5rem; font-weight: bold; font-size: 0.9rem; color: #558B2F; } /* 중간 그린 */

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #FAFAFA;
}

textarea { height: 120px; resize: none; }
/* 포커스 시 그린 계열 강조 */
input:focus, textarea:focus { 
    border-color: #8BC34A; 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.2);
}

/* 버튼 디자인 (네잎클로버 그린) */
button {
    width: 100%;
    padding: 15px;
    background-color: #558B2F; /* 진한 네잎클로버 색상 */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover { background-color: #33691E; } /* 호버 시 더 진하게 */

/* 푸터 디자인 */
footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}
footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #999;
}

/* 성공 메시지 */
.hidden { display: none; }
#successMessage h2 { color: #558B2F; }
#successMessage button { background-color: #8BC34A; } /* 성공 화면 버튼은 조금 더 밝게 */