/* 관리자 로그인 (Views/Account/Login.cshtml) — 시안 1b 토큰 위 단독 카드 */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
}

.login-card {
    width: 360px;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(20, 32, 60, .06);
}

.login-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: #2e63e8;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
}

.login-title {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
}

.login-sub {
    margin: 0 0 24px;
    font-size: 13px;
    color: #7b8496;
}

/* .login-buttons — 이번 변경 이전부터 참조처 없음(선재 데드 코드). 범위 밖이라 손대지 않는다 */
.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* .sso-btn은 존치 — 비번 로그인 버튼이 class="sso-btn login-pw-btn"으로 공유한다 (클래스명 리네임은 범위 밖) */
.sso-btn {
    height: 44px;
    border: 1px solid #e5e9f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
}

.login-idpw {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #e5e9f0;
    padding: 0 12px;
    font-size: 14px;
}

.login-pw-btn {
    background: #2e63e8;
    border-color: #2e63e8;
    color: #fff;
}

.login-msg {
    margin-top: 14px;
    min-height: 18px;
    font-size: 13px;
    color: #d33c3c;
}
