/* Start custom CSS for html, class: .elementor-element-a18a827 *//* ====== Header Container ====== */
.form-header-container {
  background: #4CAF50; /* light green */
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px 12px 0 0;
  color: #fff;
  max-width: 800px;
  margin: 40px auto 0 auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.form-header h1 {
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0 5px;
  text-transform: uppercase;
}

.form-header .form-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Logo */
.form-logo {
  max-height: 70px;
  margin-bottom: 10px;
}

/* Form Body (to match header box) */
.form-body .gform_wrapper {
  border-top: none; /* remove duplicate border */
  border-radius: 0 0 12px 12px;
  margin-top: 0;
}
/* ====== General Form Styling ====== */
body .gform_wrapper {
  background: #ffffff;
  border: 2px solid #4CAF50; /* light green border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
}

/* Form Title */
body .gform_wrapper h2.gform_title {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  color: #2E7D32; /* darker green for contrast */
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Form Description */
body .gform_wrapper .gform_description {
  text-align: center;
  font-size: 15px;
  margin-bottom: 25px;
  color: #444;
}

/* Labels */
body .gform_wrapper .gfield_label {
  font-weight: 600;
  color: #2E7D32;
  margin-bottom: 6px;
}

/* Inputs */
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="number"],
body .gform_wrapper input[type="date"],
body .gform_wrapper select,
body .gform_wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
}

body .gform_wrapper input:focus,
body .gform_wrapper select:focus,
body .gform_wrapper textarea:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76,175,80,0.4);
  outline: none;
}

/* File Upload (Passport Photo) */
body .gform_wrapper input[type="file"] {
  background: #f9f9f9;
  border: 2px dashed #4CAF50;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* Submit Button */
body .gform_wrapper .gform_footer input[type="submit"] {
  background: #4CAF50;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

body .gform_wrapper .gform_footer input[type="submit"]:hover {
  background: #45a049;
  box-shadow: 0 4px 10px rgba(76,175,80,0.4);
}

/* Section Break Titles */
body .gform_wrapper .gsection_title {
  font-size: 20px;
  color: #2E7D32;
  margin-top: 25px;
  margin-bottom: 10px;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
}

/* Validation Messages */
body .gform_wrapper .validation_message {
  color: #d9534f;
  font-size: 14px;
  margin-top: 5px;
}

body .gform_wrapper .gform_validation_errors {
  background: #f8d7da;
  border: 1px solid #d9534f;
  color: #721c24;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Success Message */
body .gform_confirmation_message {
  background: #dff0d8;
  border: 1px solid #4CAF50;
  color: #2E7D32;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
}/* End custom CSS */