.auth-transition-page {
    min-height: 100vh;
    background-color: #1A3646;
    background-image: url('../images/bluebackground.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.auth-transition {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-transition__card {
    width: 100%;
    max-width: 22rem;
    padding: 2.25rem 2rem 2rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(1, 0, 39, 0.35);
    text-align: center;
}

.brand-lockup {
    display: inline-block;
    line-height: 1;
}

.brand-lockup__name {
    font-family: "Outfit", "Poppins", "Roboto", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: #1A3646;
}

.brand-lockup__product {
    color: #516FFF;
}

.brand-lockup--card {
    display: flex;
    justify-content: center;
    margin: 0 auto 1.35rem;
}

.auth-transition__spinner {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1.15rem;
    border: 3px solid #e2e8f0;
    border-top-color: #516FFF;
    border-radius: 50%;
    animation: auth-transition-spin 0.85s linear infinite;
}

@keyframes auth-transition-spin {
    to {
        transform: rotate(360deg);
    }
}

.auth-transition__title {
    margin: 0 0 0.4rem;
    font-family: "Outfit", "Poppins", "Roboto", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A3646;
    line-height: 1.3;
}

.auth-transition__message {
    margin: 0 0 1.25rem;
    font-family: "Outfit", "Poppins", "Roboto", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #64748b;
}

.auth-transition__button {
    min-width: 9.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
}

#app > .auth-transition,
#app > #loader.auth-transition {
    min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
    .auth-transition__spinner {
        animation: none;
        border-top-color: #516FFF;
    }
}
