/* Base typography & colors (matching privacy policy theme) */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5fff5;
  color: #2d4d2a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-align: left;
}

/* Container */
.policy-container {
  max-width: 900px;
  margin: 30px auto;
  padding: 30px 25px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.1);
}

/* Headings */
h1 {
  background-color: #c8e6c9;
  color: #1b5e20;
  padding: 18px 12px;
  margin: 0 0 10px;
  border-bottom: 2px solid #a5d6a7;
  font-size: 1.8rem;
}

h3 {
  color: #388e3c;
  margin: 5px 0 25px;
  font-weight: 500;
}

/* Form layout */
.disenroll-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1px solid #c1d8c4;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #66bb6a;
  box-shadow: 0 0 6px rgba(102, 187, 106, 0.3);
}

/* Button */
.form-action {
  margin-top: 10px;
  text-align: right;
}

button[type="submit"] {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: filter .2s, transform .1s;
}

button[type="submit"]:hover {
  filter: brightness(1.05);
}

button[type="submit"]:active {
  transform: scale(.98);
}

/* Footer */
footer {
  margin-top: 35px;
  background-color: #c8e6c9;
  color: #1b5e20;
  padding: 15px 10px;
  font-size: 14px;
  border-top: 2px solid #a5d6a7;
  text-align: left;
  border-radius: 0 0 6px 6px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .policy-container {
    padding: 25px 15px;
  }
  .form-action {
    text-align: center;
  }
  button[type="submit"] {
    width: 100%;
  }
}
