.reset-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 80%;
}

@media (min-width: 450px) {
   .reset-wrapper{
       width: 50%;
   }
    .reset-form{
        width: 75% !important;
    }
}

@media (min-width: 780px) {
   .reset-wrapper{
       width: 50%;
   }
    .reset-form{
        width: 50% !important;
    }
}

h1{
    color: #666666;
    font-weight: 600;
    font-size: 20px;
}

.reset-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.content{
    height: 80%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.reset-form > input[type=email], input[type=password]{
    padding: 5px;
    font-size: 16px;
    background-color: #F6F6F6;
    font-weight: 600;
    border: #BCBCBC 1.5px solid;
    border-radius: 5px;

}

.muted-text{
   font-size: 14px;
    text-align: center;
}

input.error {
    border-color: #FF0000; /* Borde rojo para campos inválidos */
    background-color: #FFF5F5; /* Fondo ligeramente rojo */
    color: #FF0000;
}

input.error::placeholder{
    color: #ffa7a7
}

.good-message{
    color: var(--primary-color);
}

.error-message, .error-message-text{
    color: #FF0000;
}

.error-message-text{
    margin: 0
}

.good-message, .error-message{
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.reset-form > button[type=submit], button[type=button]{
    background-color: #4EAB33;
    padding: 5px;
    font-weight: 600;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    height: 36px;
}

.leave-button > a{
    text-decoration: none;
    color: #666666;
}

.leave-button{
    border: #BCBCBC 1.5px solid;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    background-color: white;
}
