.register-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
}

#regForm {
    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 rgb(63, 232, 2);
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
}

#regForm h2 {
    color: rgba(64, 255, 0, 0.401);
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

#regForm 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;
}

#regForm input:focus {
    border-color: #3fe802;
    box-shadow: 0 0 10px rgba(63, 232, 2, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

#regForm button {
    background: rgba(64, 255, 0, 0.401);
    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;
}

#regForm button:hover {
    background: rgba(17, 250, 0, 0.57);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(145, 255, 193, 0.4);
}

#regForm a {
    color: var(--text);
}
.logo2{
    font-family: 'gugi', sans-serif;
    color: rgb(0, 255, 42);
    text-align: center;
    width: 100%;       
    font-size: 4rem;
}

#regForm input:focus {
    border-color: #3fe802;
    box-shadow: 0 0 10px rgba(63, 232, 2, 0.5);
    background: rgba(0, 0, 0, 0.6);
}   