.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.hidden {
  display: none;
}
.form-container {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 45px 30px 35px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  font-family: "Inter", sans-serif;
}
.close-btn {
  position: absolute;
  top: 14px;
  right: 20px;
  border: none;
  background: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: black;
}
.form-group {
  margin-bottom: 18px;
  text-align: left;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #000;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}
.form-action {
  text-align: center;
  margin-top: 24px;
}
.submit-btn {
  padding: 10px 22px;
  border: 2px solid black;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.submit-btn:hover {
  background: black;
  color: white;
}

@media (max-width:500px){
.form-container {
  border-radius: 10px;
  padding: 45px 25px 35px;
  width: 100%;
  max-width: 90%;
}
}