body {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.forgot-container {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.forgot-container h2 {
  margin-bottom: 10px;
  color: #001b60;
}

.forgot-container p {
  font-size: 14px;
  color: #555;
}

.forgot-container input {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.forgot-container button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #001b60;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.forgot-container button:hover {
  background: #003399;
}

.back-link {
  margin-top: 15px;
}

.back-link a {
  color: #001b60;
  text-decoration: none;
  font-weight: 600;
}
