/* 인증 관련 스타일 (로그인, 회원가입, 계정 찾기) */

/* 인증 컨테이너 */
.auth-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid #e8e0d8;
}

/* 인증 헤더 */
.auth-container h2 {
    text-align: center;
    color: #6b4a2e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-container h3 {
    text-align: center;
    color: #8b6f4e;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

/* 인증 폼 */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #6b4a2e;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e8e0d8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #faf8f5;
}

.form-group input:focus {
    outline: none;
    border-color: #6b4a2e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107, 74, 46, 0.1);
}

.form-group input::placeholder {
    color: #8b6f4e;
    opacity: 0.7;
}

/* 제출 버튼 */
.submit-btn {
    background: linear-gradient(135deg, #6b4a2e 0%, #8b6f4e 100%);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 74, 46, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 인증 링크 */
.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e0d8;
}

.auth-links p {
    margin-bottom: 1rem;
    color: #8b6f4e;
}

.auth-links a {
    color: #6b4a2e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #8b6f4e;
    text-decoration: underline;
}

/* 소셜 로그인 */
.social-login {
    margin-top: 2rem;
    text-align: center;
}

.social-login p {
    color: #8b6f4e;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e8e0d8;
    border-radius: 8px;
    background: #fff;
    color: #6b4a2e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-btn:hover {
    background: #f8f6f2;
    border-color: #6b4a2e;
    transform: translateY(-2px);
}

.social-btn i {
    font-size: 1.2rem;
}

/* 에러/성공 메시지 */
.error-message,
.success-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* 반응형 */
@media (max-width: 768px) {
    .auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .auth-container h2 {
        font-size: 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        min-width: auto;
    }
} 