body {
  font-family: "Segoe UI", sans-serif;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-box h2 {
  margin-top: 0;
  text-align: center;
  color: #111;
}

.subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
}

.form-group {
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

input, select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

input:focus, select:focus {
  border-color: #2563eb;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #1e442c;
}

.privacy-text {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
