/* Sign in & register page background */

.auth-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 4rem);
    padding: 2rem 1.5rem;
    background-color: #e8e4f0;
    background-image: url("../images/auth-world-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(232, 228, 240, 0.72) 0%,
        rgba(255, 237, 224, 0.68) 50%,
        rgba(232, 228, 240, 0.75) 100%
    );
    pointer-events: none;
}

.auth-page__card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 28rem;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
        0 25px 50px -12px rgba(55, 48, 163, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
    .auth-page__card {
        padding: 2.5rem;
    }
}

.auth-page__divider-label {
    background: rgba(255, 255, 255, 0.94);
}
