body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f0f2f5;
}

.overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background-color: rgba(0,0,0,0.4);
  z-index:1;
}

.form-card {
  max-width: 400px;
  width: 100%;
  padding: 2.5rem;
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  z-index:2;
  color: #fff;
  text-align: center;
}

.form-card h2 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-control {
  background-color: rgba(255,255,255,0.3);
  border: none;
  color: #fff;
}

.form-control::placeholder {
  color: #f0f0f0;
}

.reset-btn {
  background-color: #ff2d55;
  border: none;
  color: #fff;
}

.reset-btn:hover {
  background-color: #e22b4d;
}

.feedback {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.terms {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  color: #f0f0f0;
}

.terms a {
  color: #fff;
  text-decoration: underline;
}

.login-link {
  color: #ff8ac5;
  text-decoration: none;
}
.login-link:hover {
  text-decoration: underline;
}
