@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body{
    background: linear-gradient(90deg, #800000 0%, #9b1b1b 35%, #b74a4a 100%);
    font-family: 'Poppins', sans-serif;
}

.container-fluid {
    height: 100vh; /* Imposta l'altezza al 100% della finestra del browser */
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    border-radius: 20px;
    width:100%;
    background-color: white;
    padding: 5%;
    box-sizing: border-box; /* Assicura che il padding non influisca sulla larghezza totale */

}

.btn-primary{
    width: 100%;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #800000 0%, #9b1b1b 35%, #b74a4a 100%);
    transition: background 0.3s ease;
    box-sizing: border-box;
}


.form-control{
    color: rgba(0,0,0,.87);
    border-bottom-color: rgba(0,0,0,.42);
    box-shadow: none;
    border: none;
    border-bottom: 1px solid;
    border-radius: 4px 4px 0 0;
}
h4{
    font-size: 2rem;
    font-weight: 700;
}
.form-label{
    font-weight: 800;
}
@media only screen and (max-width: 600px) {
    form {
        width: 100%;
    }
}