

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: start;
    align-items: center;
    background-color: #227FD2 ;

}

.senha-container {
    width: 320px;
    height: 200px;
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;

}

.logo{
    margin-top: 100px;
    max-width:300;
    max-height:200px;
    width: auto;
    height: auto;
 
}

.div-logo{
    max-width:600px;
    max-height:300px;
    width: auto;
    height: auto;
   

}

.senha-container h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #227FD2;
}
.senha-container input {
    width: 95%;
    padding: 12px 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
}
.senha-container button {
    width: 100%;
    padding: 12px 8px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    background-color: #227FD2;
 
    color: #ffffff;
}

.senha-container button:hover {
    background-color: #87BCEC ;

}

.text-reset-pass{
    width: 100%;
    height: 20px;
    margin-top: 15px;
    text-align: center;

   
}

.font-pass{
    color: #4e4e4e;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;

}




.error {
    color: red;
    margin-top: 10px;
    text-align: center;
}
.success {
    color: green;
    margin-top: 10px;
    text-align: center;
}


/* Estilos para indicadores de validação */
.valid {
    color: green;
}
.invalid {
    color: red;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin-bottom: 5px;
}

/*############## SPINER CARREGANDO ########################*/
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.spinner-container {
    text-align: center;
    color: #fff;
}

.spinner-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #ffffff;
    border-top-color: #227FD2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*#########################################################*/