/* ===== Base ===== */
body {
    background-color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===== Layout ===== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    background: #fff;
}

/* ===== Branding ===== */
.logo {
    width: 100px;
    margin: 0 auto 24px;
    display: block;
}

/* ===== Headings ===== */
.title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.subtitle {
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.user-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ===== Forms ===== */
.form-label {
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    height: 48px;
    border-radius: 8px;
}

/* ===== Buttons ===== */
.btn-primary {
    height: 48px;
    border-radius: 999px;
    font-weight: 600;
    background-color: #0057b8;
    border-color: #0057b8;
}

.btn-outline-primary {
    height: 48px;
    border-radius: 999px;
    font-weight: 600;
}

/* ===== Links ===== */
.link {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: #0057b8;
    text-decoration: none;
    font-weight: 600;
}

/* ===== Divider ===== */
.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    font-size: 12px;
    color: #6b7280;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d1d5db;
}

.divider span {
    margin: 0 12px;
}

/* ===== Footer (username page safe) ===== */
footer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 24px;
}

footer a {
    color: #6b7280;
    text-decoration: none;
    margin: 0 6px;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .login-card {
        border: none;
        border-radius: 0;
        padding: 32px 20px;
    }
}


.verify-subtext {
    font-size: 14px;
    color: #4b5563;
    margin: 16px 0 24px;
    line-height: 1.5;
}

.verify-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.verify-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
}

.verify-option input {
    margin-top: 4px;
}

.option-content {
    font-size: 14px;
}

.masked {
    color: #6b7280;
    font-size: 13px;
}

.verify-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 16px;
}

.verify-subtext {
    font-size: 14px;
    color: #4b5563;
    margin: 12px 0 20px;
}

.verify-question {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.verify-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.verify-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    padding: 10px 0;
    cursor: pointer;
}

.verify-option input {
    width: 18px;
    height: 18px;
}

