.auth-page {
    min-height: 680px;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(0, 91, 170, 0.12), transparent 32%),
        linear-gradient(135deg, #f5f9ff 0%, #ffffff 58%, #eef6ff 100%);
    color: #07111f;
}

.auth-card {
    width: min(520px, 100%);
    padding: 42px;
    border: 1px solid #e8edf5;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.auth-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #005edc;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.auth-heading h1 {
    color: #061936;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.auth-heading p {
    margin-top: 16px;
    color: #17243a;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.auth-form {
    margin-top: 30px;
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: #061936;
    font-size: 14px;
    font-weight: 900;
}

.form-group input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d9e3f0;
    border-radius: 8px;
    background: #ffffff;
    color: #07111f;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.form-group input:focus {
    border-color: #005edc;
    box-shadow: 0 0 0 4px rgba(0, 94, 220, 0.12);
}

.auth-submit {
    min-height: 56px;
    margin-top: 8px;
    border: 0;
    border-radius: 8px;
    background: #005baa;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(0, 91, 170, 0.28);
    transition: 0.2s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    background: #0071ce;
}

.auth-switch {
    margin-top: 24px;
    color: #17243a;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.auth-switch a {
    color: #005edc;
    font-weight: 900;
}

.auth-alert {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.auth-alert-error {
    background: #fff1f1;
    color: #a40000;
    border: 1px solid #ffd1d1;
}

.auth-alert-success {
    background: #effaf6;
    color: #08745f;
    border: 1px solid #c7f1e2;
}

@media (max-width: 720px) {
    .auth-page {
        padding: 48px 6%;
    }

    .auth-card {
        padding: 30px 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}