body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #eaf2fb;
}

.forgot-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.forgot-container h2 {
  text-align: center;
  color: #262b31;
  margin-bottom: 0.8rem;
}

.forgot-container p {
  text-align: center;
  color: #555;
  margin-bottom: 1.6rem;
  font-size: 0.95rem;
}

form input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #262b31;
  border-radius: 8px;
  background-color: #f4f9ff;
  margin-bottom: 1.2rem;
}

form input:focus {
  outline: none;
  background: #fff;
}

button[type="submit"] {
  width: 100%;
  padding: 0.85rem;
  background-color: #4295ac;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button[type="submit"]:hover {
  opacity: 0.9;
}

.back-link {
  text-align: center;
  margin-top: 1.4rem;
}

.back-link a {
  color: #262b31;
  text-decoration: none;
  font-size: 0.95rem;
}

.back-link a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .forgot-container {
    margin: 1.5rem;
    padding: 2rem;
  }
}
