/* ========================================
   BRZ 인증 페이지 (로그인/비번찾기) 전용
   ======================================== */

/* 로그인 페이지 레이아웃 (중앙 정렬) */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* 배경 오로라 효과 */
.login-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(91, 63, 217, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* 로그인 카드 */
.login-card {
    background-color: var(--brz-bg-card);
    border: 1px solid var(--brz-border);
    border-radius: var(--brz-radius-lg);
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo-img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 24px auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

.login-error {
    background-color: var(--brz-error-bg);
    color: var(--brz-error);
    padding: 12px;
    border-radius: var(--brz-radius-sm);
    font-size: 13px;
    text-align: center;
    margin-bottom: 24px;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--brz-text-secondary);
    margin-bottom: 8px;
}

/* 로그인 버튼 (High Contrast) */
.btn-submit {
    width: 100%;
    height: 48px;
    background-color: #FFFFFF;
    color: #0F1012;
    border: none;
    border-radius: var(--brz-radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #E5E7EB;
    transform: translateY(-1px);
}

.login-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 12px;
    color: #555;
}