.elementor-133 .elementor-element.elementor-element-4cef5e8d{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-210251f0 */.application-form {
  max-width: 850px;
  margin: 0 auto;
  background: #f9fafc;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
}

.application-form h2 {
  text-align: center;
  color: #1d4ed8;
  font-size: 28px;
  margin-bottom: 30px;
}

.application-form h3 {
  color: #1e3a8a;
  border-left: 4px solid #60a5fa;
  padding-left: 8px;
  margin-top: 35px;
  margin-bottom: 20px;
}

.application-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 500;
  color: #333;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 5px;
  transition: all 0.2s ease-in-out;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 6px rgba(37,99,235,0.3);
}

.application-form [type="submit"] {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  margin-top: 30px;
  transition: background 0.3s;
}

.application-form [type="submit"]:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 25px 0;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-4cef5e8d *//* Styling for a cleaner, two-column layout */
.form-container {
    max-width: 800px; /* Optional: Sets a max width for the whole form */
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.field-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.field-group, .full-field {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.full-field {
    min-width: 100%;
}

/* Style for labels */
.form-container label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Style for all input fields (text, email, tel, number, select) */
.form-container input:not([type="radio"]), 
.form-container textarea, 
.form-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
    margin-top: 5px;
    transition: border-color 0.3s;
}

.form-container input:focus, 
.form-container textarea:focus, 
.form-container select:focus {
    border-color: #0073aa; /* WordPress Blue on focus */
    outline: none;
}

/* Styling for titles and separators */
.form-container p strong {
    display: block;
    font-size: 18px;
    margin: 20px 0 10px 0;
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
}

.form-container hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 25px 0;
}

/* Submit button styling */
.submit-button-wrap input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-button-wrap input[type="submit"]:hover {
    background-color: #45a049;
}

/* Responsive adjustments for small screens */
@media (max-width: 600px) {
    .field-row {
        flex-direction: column;
        gap: 0;
    }
    .field-group {
        min-width: 100%;
        margin-bottom: 15px;
    }
}/* End custom CSS */