/* Estilos personalizados */
.input-error {
    border-color: #f44336 !important;
  }
  .error-message {
    color: #f44336;
    font-size: 0.75rem;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
    display: none;
  }
  .forgot-password {
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
  }
  .forgot-password a {
    font-size: 0.8rem;
    cursor: pointer;
  }
  /* Modal de recuperação de senha */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  .close:hover {
    color: black;
  }