.login-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #0d0d0d;
    display: flex;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, #5f0f40, transparent 50%),
    radial-gradient(circle at 70% 40%, #0f4c75, transparent 50%),
    radial-gradient(circle at 40% 70%, #1b1b2f, transparent 50%),
    radial-gradient(circle at 60% 60%, #3a0ca3, transparent 50%);
    filter: blur(100px);
    animation: darkBlobs 40s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0.7;
}

@keyframes darkBlobs {
    0% {
        transform: translate(0%, 0%) scale(1);
    }
    100% {
        transform: translate(-20%, -20%) scale(1.2);
    }
}


.login-form {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
    display: flex;
    flex-direction: column;
    gap: 1rem;


    a,
    .forgot-password-link {
        color: var(--text);
        transition: all .2s ease-out;
    }

    a:hover,
    .forgot-password-link:hover {
        color: var(--primary);
    }

    .subheader {
        color: #b88f8f;
        font-size: .9rem;
    }

    form .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;

        label {
            display: none;
        }
    }


    input {
        height: 3rem;
        padding: 1rem;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        background: none;
        transition: all .2s ease-out;
        font-size: 1rem;
    }

    input::placeholder {
        color: #b88f8f;
        font-size: .9rem;
    }

    input:focus {
        outline: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }

    .forgot-password {
        text-align: right;
        margin: 0.5rem;
        font-size: .9rem;
    }

    button {
        width: 100%;
        margin-top: 1.5rem;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid var(--text);
        border-radius: 8px;
        transition: all .2s ease-out;
    }

    button:hover {
        background-color: rgba(255, 255, 255, 0.45);
    }

}

.social-login {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .7rem;
    }
}