/* ============ Register Now CSS file last configured on 01-11-2022 [17:40 Hours] ============ */
#website #header {
  display: none !important;
}

#website .footer-wrapper {
  display: none !important;
}

.landing-banner-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.landing-banner-section img.caption-logo {
  height: 210px;
  padding-left: 7px;
}

.landing-banner-section h1.banner-heading {
  margin: 30px 0 30px 0;
  color: #7dce82;
  font-size: 50px;
}

.landing-banner-section h3.banner-sub-heading {
  //Add CSS here
}

.custom-contact-wrapper {
  background-color: #FAFAFA;
  padding: 30px;
}

.custom-form-group {
  position: relative;
  padding: 20px 0 0;
  margin-bottom: 40px;
}

.margin-above-submit-button {
  margin-bottom: 15px;
}

.custom-form-field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d2d2d2;
  outline: 0;
  font-size: 16px;
  color: #333333;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}

.custom-form-field::placeholder {
  color: transparent;
}

.custom-form-field:placeholder-shown~.custom-form-label {
  font-size: 18px;
  cursor: text;
  top: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.custom-form-label,
.custom-form-field:focus~.custom-form-label {
  position: absolute;
  display: block;
  transition: 0.2s;
  font-size: 15px;
  color: #c3c3c3;
  font-weight: 500;
}

.custom-form-field:focus~.custom-form-label {
  color: #f53336;
}

.custom-form-field:focus {
  padding-bottom: 6px;
  border-bottom: 2px solid #f53336;
}

.custom-form-group .submit-button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  float: right;
  outline: none;
  background: #f53336;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  transition: ease-out 0.5s;
}

.custom-form-group .submit-button:hover {
  background-color: #e6c946;
  color: #333333;
  transition: ease-out 0.5s;
}

.custom-form-group .submit-button:active {
  background-color: #7dce82;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: #e6c946;
  color: #333333;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}
