body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #c8e6f0, #e3f2fd);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.forgot-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  padding: 30px;
  width: 360px;
  text-align: center;
}

.forgot-box h1 {
  margin-bottom: 10px;
  color: #0d47a1;
}

.input-box {
  position: relative;
  margin: 20px 0;
}

.input-box input {
  width: 100%;
  padding:10px 0 10px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  box-sizing: border-box;
}

.input-box i {
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 0;
  transform: translateY(-50%);
  color: #888;
}

.btn {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.btn:hover {
  background-color: #1976d2;
}

.back-link {
  margin-top: 15px;
}

.error-message, .success-message {
  border-radius: 6px;
  padding: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}
.error-message {
  background: rgba(255,0,0,0.1);
  color: #d32f2f;
  border: 1px solid #d32f2f;
}
.success-message {
  background: rgba(0,128,0,0.1);
  color: #2e7d32;
  border: 1px solid #2e7d32;
}
