/* barra menu */   

.menu-div-container {
    display: grid;
    width: 100%;
    height: 6vh;
    font-family : verdana;font-size:10px;
    overflow:hidden;
    border-top: 2px solid #999999;
    background: -moz-linear-gradient(top, #62adf8, #3366cc);
    }
.menu-div-container div {
    text-align: center;
    }

/* contiene il form */

.form-container {
    display: flex;
    justify-content: center; /* Centra orizzontalmente */
    align-items: center; /* Centra verticalmente */
    height: 87vh; /* Imposta l'altezza a tutta la viewport */
}
.centro {  /* form centrato */
    width: 98vw;
    padding: 10px;
    max-width: 500px;
    height: 80vh;
    border: solid 2px rgb(73, 72, 72);
    border-radius: 4px;
    background-color: #f4f4f4;
    }
    
h2 {  /* intestazione form */
    text-align: center;
    color: #333;
    }
label {
    display: block;
    margin: 5px;
    color: #555;
    font-size: 10px;
    }
    
select, input[type="text"], input[type="submit"], input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #959494;
    border-radius: 4px;
    }
input[type="text"]:read-only, input[type="password"]:read-only { /* For Firefox */
    cursor:no-drop;
    }

#select-mobile480 {width:460px;}

:disabled   {
    cursor: no-drop;
    }

input[type=button], input[type=submit], input[type=reset] {
        border: none;
        color: black;
        text-decoration: none;
        cursor: pointer;
        }
input[type=date] {
        cursor: pointer;
        }
#pulsantesalva {
        margin: auto;
        line-height: 0px;
        display: block;
        border:none;
        text-align: center; 
        cursor: pointer;
        background:none;  /* Sfondo pulsante*/
        }
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        background-color: #f9922d;
        font-weight:bold;
        }

    
    .immagine1 {display: block;width:5.5vw;height:auto;border-right: inset 1px grey;}
    .immagine2 {display: none;}
    #cambio:hover .immagine1 {display: none;}
    #cambio:hover .immagine2 {display: block;width:5.5vw;height:auto;border-right: inset 1px grey;}

    .immagine3 {display: block;width:5.5vw;height:auto;text-align: center;}
    .immagine4 {display: none;}
    #cambio:hover .immagine3 {display: none;}
    #cambio:hover .immagine4 {display: block;width:5.5vw;height:auto;text-align: center;}

@media (max-width: 780px) {

    .immagine1 {display: block;width:20vw;height:auto;border-right: inset 1px grey;}
    .immagine2 {display: none;}
    #cambio:hover .immagine1 {display: none;}
    #cambio:hover .immagine2 {display: block;width:20vw;height:auto;border-right: inset 1px grey;}

    .immagine3 {display: block;width:20vw;height:auto;text-align: center;}
    .immagine4 {display: none;}
    #cambio:hover .immagine3 {display: none;}
    #cambio:hover .immagine4 {display: block;width:20vw;height:auto;text-align: center;}

    .form-container {height: 85vh;} /* Imposta l'altezza a tutta la viewport */
    h2 {padding: 6px;font-size: 12px;}/* intestazione form */

    #titolo {font-size: 4.5vw;letter-spacing: 1px;}
    #titolocc {width: 90%;padding-top: 1.5vh;}
    #titolodx {display: none;}
    
    #footerdiv {height: 8vh;font-size: 1.4vh;}
    #footersx, #footerdx {display: none;}

    #select-mobile780 {max-width:100%;}
    
    }