body {
  font-family: Arial, sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.forgot-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  width: 350px;
  text-align: center;
}

h2 {
  color: #1a1a1a;
}

p {
  color: #555;
  font-size: 14px;
}

input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #1877f2;
  border: none;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background-color: #155cc0;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.footer-links a {
  color: #1877f2;
  text-decoration: none;
  font-size: 13px;
}

.footer-links button {
  background: #e4e6eb;
  color: #333;
  font-size: 13px;
  width: auto;
  padding: 5px 10px;
}
.back-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 10px;
  background-color: #e4e6eb;
  border: none;
  border-radius: 6px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.back-btn:hover {
  background-color: #d0d2d5;
}
