/* Stile per il modale reset password */
#resetModal {
    display: none; /* Nascondi di default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Sfondo scuro trasparente */
    justify-content: center;
    align-items: center;
    z-index: 1100; /* Sopra gli altri elementi */
}

/* Contenitore del modale */
#resetModal .reset-modal-dialog {
    background: #fff
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
   /* width: 50%; */
    text-align: center;
}

/* Titolo del modale */
#resetModal .reset-modal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Campi input */
#resetModal .reset-modal-input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Pulsanti */
#resetModal .reset-modal-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#resetModal .reset-modal-btn.primary {
    background-color: #007bff;
    color: white;
}

#resetModal .reset-modal-btn.secondary {
    background-color: #6c757d;
    color: white;
}

/* Messaggio di errore/successo */
#resetMessage {
    margin-top: 10px;
    font-size: 14px;
}