.title-header {
    text-align: center;
}

#login-form {
    background: radial-gradient(circle, rgba(34,189,179,1) 0%, rgba(163,221,193,1) 100%);
    min-height: 100vh;
}

#login-container {
    background-color: rgba(236, 240, 241,0.6);
    border-radius: 10px;
}

#register-form {
    background: radial-gradient(circle, rgba(34,189,179,1) 0%, rgba(163,221,193,1) 100%);
    min-height: 100vh;
}

#register-container {
    background-color: rgba(236, 240, 241,0.6);
    padding: 40px;
    border-radius: 10px;
}

#img-login {
    width: 100%;
}

body {
    background: rgb(34,189,179);
    background: radial-gradient(circle, rgba(34,189,179,1) 0%, rgba(163,221,193,1) 100%);
    min-height: 100vh;
    min-width: 100vw;
    overflow-x: hidden;
}

.universal-form {
    background-color: rgba(236, 240, 241,0.6);
    padding: 40px;
    border-radius: 10px;
    width: 60%;
}

@media only screen and (max-width:800px) {
    .universal-form {
        width: 80%;
    }
}