/* RedefinirSenha.css */
.reset-wrapper {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .reset-wrapper h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
  }
  .reset-form {
    display: flex;
    flex-direction: column;
  }
  .reset-form label {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .reset-form input {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  .reset-form button {
    padding: 0.8rem;
    background: #4ca1ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .reset-form button:hover {
    background: #4095e0;
  }
  .reset-message {
    margin-top: 1rem;
    text-align: center;
    color: #e74c3c;
  }
  