form > * {
  font-weight: 500;
}

section.contact-us.meetings-page {
    background-image: url(../images/bg-tesselate-120.png);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px 0px 0px;
    min-height: 100vh;
}
  
section.contact-us.meetings-page #registrationForm {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}

section.contact-us.meetings-page #registrationForm h2 {
  text-transform: uppercase;
  color: #1f272b;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

section.contact-us.meetings-page #registrationForm input:not([type=radio]):not([type=checkbox]) {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
}

.field {
  margin-bottom: 30px;
}

.form-check {
  margin-bottom: 0.5rem;
}

section.contact-us.meetings-page #registrationForm select {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 0px 15px;
  border-right: 1rem solid transparent; /* Add padding for the dropdown arrow */
}

section.contact-us.meetings-page #registrationForm textarea {
  width: 100%;
  min-height: 140px;
  max-height: 180px;
  border-radius: 20px;
  background-color: #f7f7f7;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 500;
  color: #7a7a7a;
  padding: 15px;
}

section.contact-us.meetings-page #registrationForm button {
  font-size: 13px;
  color: #fff;
  background-color: #FA2301;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  outline: none;
}

section.contact-us.meetings-page #registrationForm button:hover {
  opacity: 0.9;
}

section.contact-us.meetings-page #registrationForm a {
  color: #f5a425;
}

#loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: rgba(0,0,0,0.5)
  url('../images/loading.gif')
  50% 50%
  no-repeat;
}