#forgotForm {
  max-width: 400px;
  margin: 30px auto;
  padding: 25px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

#forgotForm label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

#forgotForm input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}

#forgotForm input[type="email"]:focus {
  border-color: #6a5acd;
  outline: none;
}

#forgotForm button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #6a5acd;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

#forgotForm button[type="submit"]:hover {
  background-color: #5a4bcf;
}