.auth-scene-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(#a23982, #1f1013);
}

.auth-scene-shell {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-scene-column {
    width: 100%;
    max-width: 440px;
}

.auth-scene-card-wrap {
    margin: 0 auto;
}

.auth-scene-footer {
    margin-top: 1.25rem;
    text-align: center;
    color: #ffffff;
}

.auth-scene-footer p {
    margin-bottom: 0;
}

.auth-scene-light {
    position: absolute;
    width: 0;
    opacity: 0;
    background-color: #ffffff;
    box-shadow: #e9f1f1 0 0 20px 2px;
    top: 100vh;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.auth-scene-light.x1 { animation: authFloatUp 4s infinite linear; transform: scale(1); }
.auth-scene-light.x2 { animation: authFloatUp 7s infinite linear; transform: scale(1.6); left: 15%; }
.auth-scene-light.x3 { animation: authFloatUp 2.5s infinite linear; transform: scale(.5); left: -15%; }
.auth-scene-light.x4 { animation: authFloatUp 4.5s infinite linear; transform: scale(1.2); left: -34%; }
.auth-scene-light.x5 { animation: authFloatUp 8s infinite linear; transform: scale(2.2); left: -57%; }
.auth-scene-light.x6 { animation: authFloatUp 3s infinite linear; transform: scale(.8); left: -81%; }
.auth-scene-light.x7 { animation: authFloatUp 5.3s infinite linear; transform: scale(3.2); left: 37%; }
.auth-scene-light.x8 { animation: authFloatUp 4.7s infinite linear; transform: scale(1.7); left: 62%; }
.auth-scene-light.x9 { animation: authFloatUp 4.1s infinite linear; transform: scale(.9); left: 85%; }

@keyframes authFloatUp {
    0% { top: 100vh; opacity: 0; }
    25% { opacity: 1; }
    50% { top: 0; opacity: .8; }
    75% { opacity: 1; }
    100% { top: -100vh; opacity: 0; }
}

@media (max-width: 575.98px) {
    .auth-scene-shell {
        padding: 1.5rem .75rem;
    }
}
