/*
 * 인증 화면 전용 스타일이다.
 * 모바일에서도 가입, 인증, 로그인이 한 화면에서 흔들리지 않게 폭과 여백을 제한한다.
 */
body {
    min-height: 100vh;
    background: #111318;
    color: #e7e9ee;
    font-size: 0.8rem;
}

.form-control,
.form-label,
.btn,
.nav-link,
.alert {
    font-size: 0.8rem;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-panel {
    width: min(100%, 440px);
    background: #1b1f27;
    border: 1px solid #303744;
    border-radius: 8px;
    padding: 24px;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.auth-brand i {
    font-size: 30px;
}

.auth-brand h1 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
}

.auth-brand p {
    color: #9ba4b5;
    margin: 4px 0 0;
    font-size: 11px;
}

.auth-input {
    background: #111318;
    border-color: #303744;
    color: #fff;
}

.auth-message {
    font-size: 11px;
}

.auth-admin-link {
    text-align: center;
    margin-top: 16px;
}

.auth-admin-link a {
    color: #9ba4b5;
    font-size: 10px;
    text-decoration: none;
}
