.forgot-password-title{
    text-align: center;
    padding-top: 70px;   
}

.forgot-contenedor{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.forgot-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    margin-top: 40px;
}

.fields-forgot{
    width: 300px;
    height: 30px;
    padding: 10px;
    border: 1px solid #5e5e5e;
    border-radius: 5px;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
}

.forgot-button{
    width: 100px;
    height: 40px;
    padding: 7px;
    border: 1px solid #5e5e5e;
    border-radius: 5px;
    align-items: center;
    background-color: #37769e;
    color: white;
}

.forgot-button:hover{
    background-color: #1b426b;
}

.forgot-button:active{
    background-color: #122d4a;
}

  .forgot-message{
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
  }