.auth-page {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.25), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(0, 201, 255, 0.2), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(30, 58, 138, 0.25), transparent 55%),
        #0b0f18;
    color: #ffffff;
}

.auth-page-shell {
    width: 100%;
    max-width: 520px;
    padding: 2.5rem 1.5rem 3rem;
    position: relative;
}

.auth-page-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.auth-page-home:hover {
    color: #ffffff;
}

.auth-page .auth-modal {
    position: static;
    inset: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
}

.auth-page .auth-modal-container {
    transform: none;
    max-width: 520px;
    width: 100%;
}

.auth-page .auth-modal-close {
    display: none;
}

@media (prefers-color-scheme: light) {
    .auth-page {
        background: #e6e6e6;
        color: #171717;
    }

    .auth-page-home {
        color: rgba(23, 23, 23, 0.65);
    }

    .auth-page-home:hover {
        color: #171717;
    }
}

@media (max-width: 480px) {
    .auth-page-shell {
        padding: 0 0 2rem;
    }

    .auth-page-home {
        padding: 1.25rem 1.5rem 0;
    }

    .auth-page .auth-modal-container {
        border-radius: 0;
        max-height: none;
    }
}