.login-container {
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: radial-gradient(circle at center, #1e0b2e 0%, #0e0816 100%);*/
    font-family: 'Segoe UI', Roboto, Arial, Helvetica, sans-serif
}


.fade-out {
    opacity: 0;
}

@keyframes blurAppear {
    from {
        opacity: 0.2;
        backdrop-filter: blur(0px);
        filter: brightness(0.7);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
        filter: brightness(1);
    }
}

.login-container, .register-container {
    animation: blurAppear 1s ease-in-out;
}


#loginForm {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: var(--padding);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255, 0.1);
    box-shadow: 0px 0 250px rgba(255, 9, 79, 0.736);
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
}

#regForm a {
    color: var(--text);
}

#loginForm h2 {
    color: white;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

#loginForm input {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: 0.3s;
    width: 300px;
}

#loginForm input:focus {
    border-color: var(--accent);
    outline: none;
    background: rgba(0, 0, 0, 0.6);
}

#loginForm button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    width: 250px;
}

#loginForm button:hover {
    background: #ff4d6d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 81, 100, 0.4);
}