body.auth-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(25, 135, 84, 0.10), transparent 30%),
        linear-gradient(135deg, #f8fafc, #eef2f7);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.04);
}

.auth-brand h2 {
    font-size: 30px;
    color: #111827;
}

.auth-brand p {
    font-size: 15px;
}

.form-control {
    border-radius: 14px;
    min-height: 52px;
    border: 1px solid #d9e2ef;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #111827;
}

.btn-dark {
    min-height: 52px;
    border-radius: 14px;
    font-weight: 600;
        display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .auth-brand h2 {
        font-size: 24px;
    }
}