/* Path: /assets/css/forgot.css */
/* Purpose: Styles specific to the Forgot Password page */

.forgot-content {
  background-color: #391047;
  padding: 2rem 1rem;
  max-width: 500px;
  margin: 0 auto;
  color: #eee;
}

.forgot-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.forgot-form label {
  font-weight: bold;
  color: #E1B929;
  margin-bottom: 0.5rem;
}

.forgot-form input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
}

.forgot-form button {
  background-color: #2180A2;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.forgot-form button:hover {
  background-color: #78A1BB;
}
