/* 
    Created on : 17 apr 2023, 12:08:35
    Author     : Norisys
    Description: Foglio di stile per la sezione pubblica del plugin
    Prefisso   : "norisys-password-reset-"
*/

.norisys-password-reset-content {

}
.norisys-password-reset-login-message {
   border: 1px dashed grey;
   border-radius: 20px;
   padding: 1rem;
}
.norisys-password-reset-content form#norisys_reset_password_form input[type=text],
.norisys-password-reset-content form#norisys_reset_password_form input[type=password],
.norisys-password-reset-content form#norisys_reset_password_form input[type=submit] {
   display: block;
   font-size: 20px;
   padding: 5px 10px;
   border-radius: 5px;
   border: 1px solid grey;
   background: #fafafa;
}
.norisys-password-reset-content form#norisys_reset_password_form input[type=text]:focus,
.norisys-password-reset-content form#norisys_reset_password_form input[type=password]:focus {
   background: #f0f0ff;
}
.norisys-password-reset-content form#norisys_reset_password_form input[type=submit]:hover {
   border: 1px solid black;
   background: #e0e0e0;
   cursor: pointer;
}
.norisys-password-reset-content form#norisys_reset_password_form label {
   cursor: pointer;
}

.norisys-password-reset-error-message {
   border: 1px solid #a00;
   border-left-width: 5px;
   padding: 0.5em 1em;
   background: #fee;
}