.login-page {
    position: relative;
}

.login-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient( -45deg, #0b1023, #111c44, #2b1b5c, #162b68, #0b1023 );
    background-size: 400% 400%;
    animation: loginGradient 18s ease infinite;
}

    .login-bg::before {
        content: "";
        position: absolute;
        inset: -20%;
        background: radial-gradient(circle at 20% 30%, rgba(98, 0, 255, 0.28), transparent 35%), radial-gradient(circle at 80% 25%, rgba(0, 119, 255, 0.22), transparent 35%), radial-gradient(circle at 50% 85%, rgba(140, 82, 255, 0.18), transparent 40%);
        animation: floatingGlow 22s ease-in-out infinite alternate;
    }

@keyframes loginGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingGlow {
    from {
        transform: translate(-2%, -2%) scale(1);
    }

    to {
        transform: translate(2%, 2%) scale(1.08);
    }
}

.login-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.login-content {
    position: relative;
    z-index: 2;
}

.login-card {
    border-radius: 28px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    color: white;
    position: relative;
}

.login-card-header {
    padding-bottom: 0;
}

.login-title {
    font-weight: 600;
    color: white;
}

.login-sub {
    margin-bottom: 18px;
    opacity: 0.85;
}

.login-logo-wrapper {
    background-color: transparent;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.login-btn {
    margin-top: 24px;
    height: 48px;
    border-radius: 14px;
}

.login-input {
    background: transparent !important;
    color: white !important;
    border-color: rgba(255,255,255,.6);
    border-radius: 8px;
}

    .login-input:focus {
        background: transparent;
        color: white;
        border-color: white;
        box-shadow: none;
    }

.login-label {
    color: white;
    margin-bottom: .4rem;
    font-weight: 500;
}

.login-checkbox label {
    color: white;
}

.login-links a {
    color: white;
    text-decoration: none;
}

    .login-links a:hover {
        text-decoration: underline;
    }

.login-error {
    margin-top: 10px;
    margin-bottom: 10px;
}



.account-nav-card {
    background: rgba(255,255,255,.04);
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(12px);
    height: 100%;
}

.account-content-card {
    background: rgba(255,255,255,.04);
    border-radius: 18px;
    padding: 40px;
    backdrop-filter: blur(12px);
    min-height: 650px;
}

.account-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.account-subtitle {
    color: rgba(255,255,255,.75);
}

.account-content-card h3 {
    color: white;
    margin-bottom: 30px;
}

.account-content-card label {
    color: white;
}

.account-content-card hr {
    border-color: rgba(255,255,255,.08);
}
