/* 로그인 및 회원가입 폼 전용 스타일 */

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 48px;
    transition: none !important;
}

.auth-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.auth-header {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #87CEEB;
    margin-bottom: 32px;
}

.auth-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.auth-input,
.auth-input-group {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 24px;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #87CEEB;
    outline: none;
    box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.2);
}

.input-group {
    display: flex;
    width: 100%;
    margin-bottom: 0;
}

.input-group .auth-input-group {
    flex: 1;
    border-radius: 8px 0 0 8px !important;
    margin-bottom: 0 !important;
}

/* 메인 제출 버튼 (스카이 블루 통일) */
.auth-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    background-color: #87CEEB;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.auth-submit-btn:hover {
    background-color: #00BFFF;
}

.auth-links {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #64748b;
}

.auth-links a {
    color: #87CEEB;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
}

.auth-links a:hover {
    color: #00BFFF;
    text-decoration: underline;
}

.feedback-msg {
    font-size: 13px;
    margin-top: 4px;
    font-weight: 500;
    min-height: 18px;
}

.btn-auth-action {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #64748b;
    padding: 0 16px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-auth-action:hover {
    background-color: var(--sky-blue);
    color: white;
    border-color: var(--sky-blue);
}

.btn-auth-confirm {
    background-color: var(--sky-blue);
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
}

.btn-auth-action,
.btn-auth-confirm {
    white-space: nowrap;
    width: 100px;
}

.social-login-area {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    color: #000;
    transition: 0.2s;
}

.btn-social-kakao {
    background-color: #FEE500;
}

.btn-social-kakao:hover {
    background-color: #E5CF00;
}

.btn-social-naver {
    background-color: #03C75A;
    color: #FFF;
}

.btn-social-naver:hover {
    background-color: #02B350;
}

.btn-email-start {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #333;
}

.btn-email-start:hover {
    background-color: #e2e8f0;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider::before {
    margin-right: .5em;
}

.divider::after {
    margin-left: .5em;
}

.error-text {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.success-text {
    color: #198754;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

/* 탭 메뉴 스타일 (중복 싹 지우고 가독성/스카이블루 컨셉 통합) */
.nav-tabs {
    border-bottom: 2px solid #cbd5e1;
}

.nav-tabs .nav-link {
    color: #8f8f8f !important;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    border: none;
    background-color: #f8f9fa;
    margin-right: 5px;
    padding: 12px 20px;
    transition: 0.2s;
}

.nav-tabs .nav-link.active {
    color: #FFFFFF !important;
    font-weight: 700;
    background-color: #87CEEB !important;
    border: none;
    border-bottom: 3px solid #00BFFF;
}

/* 계정 찾기 폼 하단 캡션 색상 */
.find-account-form .form-text.text-muted {
    color: #555555 !important;
    font-weight: 500;
}
