.input {
  width: 100%;
  padding: 10px;
}

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

/* ==============================
   COMMON FORM STYLING
================================= */
/* form {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
} */

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

label {
  display: flex;
  align-items: center;  /* Vertically center the checkbox and text */
  font-size: 16px !important;
  font-weight: 400!important;
  line-height: 1.5;  /* Make the text a bit more readable */
  margin-top: 20px;  /* Add space above the consent text */
  justify-content: flex-start;  /* Align text to the left of checkbox */
}
/* Form headings */
form h2, form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Labels */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Inputs and selects */
form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 18px;
    box-sizing: border-box;
}

/* Button styling */
form button {
    background-color: #132153;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ffcc00;
}

/* Message alerts */
p.success {
    color: green;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

p.error {
    color: red;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

p.info {
    color: #555;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Thumbnail preview for admin form */
#thumbnail_preview img {
    max-width: 200px;
    margin-top: 10px;
    border-radius: 6px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    form {
        padding: 15px;
        margin: 20px 10px;
    }
}

#interest {
    height: 120px; /* so multiple options are visible */
}

/******************************************************************************/
/* CONTACT FORM */
/******************************************************************************/
.contact-section {
  padding: 20px;
  background: #f9f9f9;
}
/* .form-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
} */

  .form-container {
    max-width: 960px;
    margin: auto;
  }

.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form .terms {
  font-weight: normal;
}
.contact-form .success {
  color: green;
}
.contact-form .error {
  color: red;
}
@media (max-width: 600px) {
  .form-container {
    padding: 10px;
  }
}
.contact-form .terms {
  margin: 15px 0;
  font-weight: normal;
  font-size: 0.95rem;
}

.contact-form .terms input[type="checkbox"] {
  margin-right: 5px;
}

/*CONTACT US*******************************************/
.contact-us-wrapper {
    background-color: #fff;
    padding: 40px 0;
}

.contact-us-container {
    max-width: 600px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
    margin: 0 auto;
    color: #414960;
    font-family: 'Roboto','Open Sans','Helvetica Neue', Helvetica, Arial, sans-serif;
}

.contact-us-container h2 {
    font-size: 40px;
    font-weight: 400;
}

.contact-us-container .success {
    color: green;
}

.contact-us-container .error {
    color: red;
}

.contact-us-container label {
    display: block;
    margin-top: 15px;
    font-size: 1.1em; /* increase as needed, e.g., 1.2em or 18px */
    font-weight: 500; /* optional: make labels a bit bolder */
    color: #414960; /* consistent with form text */
}

.contact-us-container input,
.contact-us-container select,
.contact-us-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-us-container input[type="text"],
.contact-us-container input[type="email"],
.contact-us-container input[type="tel"],
.contact-us-container select {
    height: 40px;
}

.contact-us-container input[type="submit"] {
    background-color: #132153;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-us-container input[type="submit"]:hover {
    background-color: #9E8017;
    color: #132153;
}

.contact-us-container textarea {
    height: 100px;
    resize: vertical;
}

.contact-us-container .g-recaptcha {
    margin-top: 15px;
}

/* Target only the contact form phone input */
.contact-us-container .iti {
    width: 100%;
}

.contact-us-container input[type="tel"] {
    padding-left: 55px !important; /* makes room for the flag */
}

/* Optional: make sure the phone input height is consistent */
.contact-us-container input[type="tel"] {
    height: 40px;
    box-sizing: border-box;
}

.contact-us-container select[name="department"] {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    opacity: 1 !important;
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px;
    font-size: 1em;
    margin-top: 5px;
    border-radius: 4px;
    z-index: 1000;
}

.contact-us-container input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* makes the checkbox a bit larger */
    cursor: pointer;
}

.contact-us-container label input[type="checkbox"] {
    vertical-align: middle;
}

.contact-us-container label a {
    color: #132153;
    text-decoration: underline;
}

.contact-us-container label a:hover {
    color: #9E8017;
}

.consent-wrapper {
    margin-top: 15px;
    margin-bottom: 25px; /* Space before reCAPTCHA */
}

.contact-us-container input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}


/* Responsive */
@media (max-width: 768px) {
    .contact-us-container h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .contact-us-container h2 {
        font-size: 24px;
    }
}

.consent-wrapper {
    margin: 1em 0;
}
.fake-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.4;
    flex-wrap: wrap; /* makes text wrap nicely under fake checkbox */
}

.fake-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    background-color: #fff;
    flex-shrink: 0;
    margin-top: 2px; /* aligns with text */
}

/* Show checked state */
#consentCheck:checked + .fake-checkbox-label .fake-checkbox {
    background-color: #333;
}

select {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}