@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Roboto:wght@400;500;700&display=swap");

.iti {
  width: 100%;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  padding: 0px 20px 100px;
}

.form-wrapper {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-banner {
  width: 100%;
}

.header-banner img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.form-container {
  width: 100%;
  max-width: 550px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  animation: fadeIn 0.8s ease-out;
}

.form-body {
  padding: 30px 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.form-group-spaced {
  margin-bottom: 60px;
}

.form-group label {
  display: block;
  color: #2C3345;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.form-group label.required::after {
  content: " *";
  color: #16538a;
}

.form-group .form-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #2C3345;
  margin: 20px 0 10px;
  text-decoration: none;
}

.form-group .form-main-subtitle {
  font-size: 16px;
  font-weight: 800;
  color: #16538a;
  margin: 25px 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #16538a;
  padding-bottom: 5px;
}

.form-group .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}

.form-group .checkbox-grid .checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.form-group .checkbox-grid .checkbox-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #16538a;
}

.form-group .checkbox-grid .checkbox-item label {
  color: #666666;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
  cursor: pointer;
  text-transform: none;
}

.form-group .form-control,
.form-group .form-select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2C3345;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group .form-control:focus,
.form-group .form-select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #16538a;
  box-shadow: 0 0 0 3px rgba(22, 83, 138, 0.2);
}

.form-group .form-control::placeholder,
.form-group .form-select::placeholder,
.form-group textarea::placeholder {
  color: #999 !important;
  font-size: 13px;
}

.was-validated .form-group .form-control:invalid,
.form-group .form-control.is-invalid,
.was-validated .form-group .form-select:invalid,
.form-group .form-select.is-invalid,
.was-validated .form-group textarea:invalid,
.form-group textarea.is-invalid {
  border-color: #dc3545 !important;
}

.was-validated .form-group .form-control:invalid:focus,
.form-group .form-control.is-invalid:focus,
.was-validated .form-group .form-select:invalid:focus,
.form-group .form-select.is-invalid:focus,
.was-validated .form-group textarea:invalid:focus,
.form-group textarea.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

.form-group .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
  background-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 40px;
}

.form-group .form-select.show {
  border-color: #16538a;
  box-shadow: 0 0 0 3px rgba(22, 83, 138, 0.2);
}

.form-group .custom-dropdown {
  width: 100%;
}

.form-group .custom-dropdown .dropdown-clear-btn {
  position: absolute;
  right: 33px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #aaa;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 5px;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
}

.form-group .custom-dropdown .dropdown-clear-btn:hover {
  color: #555;
}

.form-group .custom-dropdown .form-select::after {
  display: none;
}

.form-group .custom-dropdown .form-select.selected {
  color: #2C3345;
}

.form-group .custom-dropdown .form-select:not(.selected) {
  color: #999;
}

.form-group .custom-dropdown .dropdown-menu {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 15px !important;
}

.form-group .custom-dropdown .dropdown-menu .checkbox-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.2s;
}

.form-group .custom-dropdown .dropdown-menu .checkbox-item:hover {
  background-color: #f8f9fa;
}

.form-group .custom-dropdown .dropdown-menu .checkbox-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: #16538a;
}

.form-group .custom-dropdown .dropdown-menu .checkbox-item label {
  margin-bottom: 0;
  color: #666666;
  font-size: 13px;
}

.form-group .custom-dropdown .dropdown-menu .question-option-group-label {
  font-size: 12px;
  font-weight: 700;
  color: #16538a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 10px 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(22, 83, 138, 0.2);
}

.form-group .custom-dropdown .dropdown-menu .question-option-group-label:first-child {
  margin-top: 0;
}

.form-group.policy-content-top {
  margin-bottom: 30px;
}

.form-group.policy-content-top .policy-section-title-first {
  margin-top: 0;
}

.form-group .policy-instruction {
  font-size: 14px;
  font-weight: 500;
  color: #2C3345;
  margin-bottom: 12px;
}

.form-group .policy-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #2C3345;
  margin: 20px 0 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-group .policy-info-block {
  margin-bottom: 8px;
}

.form-group .policy-info-block p {
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 6px;
}

.form-group .policy-info-block p strong {
  color: #2C3345;
  font-weight: 700;
}

.form-group .policy-hours-list {
  padding-left: 0;
  margin: 0 0 8px;
  list-style: none;
}

.form-group .policy-hours-list li {
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.form-group .policy-list {
  padding-left: 18px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.form-group .policy-list li {
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.form-group .policy-list li::marker {
  color: #16538a;
}

.form-group .policy-list li ul {
  margin: 8px 0 4px;
  padding-left: 18px;
  list-style-type: circle;
}

.form-group .policy-list li ul li {
  margin-bottom: 6px;
}

.form-group .policy-icons-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
}

.form-group .policy-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 15px;
  margin-bottom: 15px;
}

.form-group .policy-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #16538a;
}

.form-group .policy-checkbox label {
  flex: 1;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 0;
  cursor: pointer;
}

.form-group .policy-checkbox label a {
  color: #16538a;
  text-decoration: underline;
  font-weight: 500;
}

.form-group .policy-checkbox label a:hover {
  color: #bf4d13;
  text-decoration: none;
}

.form-group .policy-checkbox .invalid-feedback {
  width: 100%;
  margin-left: 33px;
  margin-top: 4px;
}

.invalid-feedback {
  font-size: 12px;
  margin-top: 5px;
  color: #dc3545;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
}

.checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #16538a;
}

.checkbox-group p {
  color: #666666;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.checkbox-group p a {
  color: #007bff;
  text-decoration: none;
}

.checkbox-group p a:hover {
  text-decoration: underline;
}

.notice-bar {
  background: #fdf2ed;
  padding: 10px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 4px;
}

.notice-bar a {
  color: #d35400;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.notice-bar a:hover {
  text-decoration: underline;
}

.submit-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  z-index: 100;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
}

.submit-btn {
  width: 100%;
  max-width: 470px;
  padding: 15px;
  background-color: #16538a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.submit-btn:hover {
  background-color: #124a73;
  box-shadow: 0 4px 15px rgba(22, 83, 138, 0.35);
}

.submit-btn:active {
  transform: scale(0.98);
}

.site-footer {
  width: 100%;
  max-width: 550px;
  margin-top: 24px;
  margin-bottom: 100px;
  padding: 28px 0 8px;
  border-top: 1px solid #E0E0E0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.site-footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: #2C3345;
  margin: 0 0 14px;
}

.site-footer__logo {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.site-footer__body p {
  color: #666666;
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 6px;
}

.site-footer__body a {
  color: #666666;
  text-decoration: none;
}

.site-footer__body a:hover {
  color: #16538a;
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.site-footer__social-link svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.site-footer__social-link:hover {
  opacity: 0.85;
}

.site-footer__social-link--facebook {
  background-color: #1877f2;
}

.site-footer__social-link--youtube {
  background-color: #ff0000;
  border-radius: 8px;
}

.site-footer__social-labels p {
  color: #666666;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 6px;
}

.site-footer__social-labels a {
  color: #16538a;
  text-decoration: none;
}

.site-footer__social-labels a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .main-wrapper {
    padding: 0px 0px 100px;
    align-items: flex-start;
  }

  .header-banner {
    margin-bottom: 0px;
  }

  .form-container {
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .form-body {
    padding: 20px 25px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer {
    padding: 24px 25px 8px;
    margin-bottom: 100px;
  }
}

/*# sourceMappingURL=style.css.map */