/* Start custom CSS for html, class: .elementor-element-f67a32f *//* Page background */
body {
  margin: 0;
  min-height: 100vh;
  background: #f4f6f8;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Card */
.application-form {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 28px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.application-form h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.application-form p.subtitle {
  margin: 0 0 20px;
  font-size: 13px;
  color: #6b7280;
}

/* Labels */
.application-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

/* Inputs */
.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="file"],
.application-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.application-form textarea {
  min-height: 90px;
  resize: vertical;
}

/* Focus state */
.application-form input:focus,
.application-form textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* File input fix */
.application-form input[type="file"] {
  padding: 8px;
  font-size: 13px;
}

/* Submit Button */
.application-form button {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  background: #166534;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.application-form button:hover {
  background: #15803d;
}

.application-form button:active {
  transform: translateY(1px);
}

/* Footer note */
.application-form .note {
  margin-top: 12px;
  font-size: 11px;
  color: #6b7280;
  text-align: center;
}/* End custom CSS */