.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 #ccc;
    border-radius: 5px;
    align-items: center;
}

.forgot-button {
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 15px;
    background-color: #0d7575;
  }

  .forgot-button:hover {
    background-color: #0d7575;
  }

  .forgot-button:active {
    background-color: #0d7575;
  }
  

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