/* Forgot-Password.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.wrapper {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

h2 {
  margin-bottom: 20px;
  font-weight: 600;
}

input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

button {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  background-color: #00b4d8;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0077b6;
}

a {
  color: #90e0ef;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}