/* forgot.css & reset.css */

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.forgot-wrapper {
  background: #ffffff;
  padding: 30px 25px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  text-align: center;
}

.forgot-wrapper h2 {
  margin-bottom: 20px;
  color: #333;
}

.forgot-wrapper form {
  display: flex;
  flex-direction: column;
}

.forgot-wrapper input[type="email"],
.forgot-wrapper input[type="password"] {
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border 0.3s;
}

.forgot-wrapper input:focus {
  border-color: #007bff;
  outline: none;
}

.forgot-wrapper button {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.forgot-wrapper button:hover {
  background-color: #0056b3;
}

.success-msg,
.error-msg {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 14px;
}

.success-msg {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-msg {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}