.signup-section {
  width: 100%;
  height: 100%;
  position: relative;
}

.signup-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.603);
  z-index: 5;
}

.sign-up-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.sign-up-modal-content {
  width: 584px;
  max-height: 834px;
  overflow-y: auto;
  background-color: white;
  padding: 2% 3%;
  text-align: center;
  position: relative;
  z-index: 15;
}

.close-sign-up-modal {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  outline: none;
  background: transparent;
}

.sign-up-modal-title {
  font-size: 43px;
  font-family: "mn-bold";
  color: #000;
  text-transform: capitalize;
  padding: 2% 0;
}
.sign-up-modal-title span {
  color: #138fe4;
}

.signup-modal-description {
  font-size: 14px;
  font-family: "mn-light";
  line-height: 180%;
  padding: 4% 2%;
}

.sign-up-form {
  padding: 2% 0%;
  width: 345px;
  margin: 0 auto;
  overflow-y: auto;
}

.signup-email-container {
  width: 100%;
  margin-bottom: 6% !important;
}

.signup-email-container input {
  width: 100%;
  height: 43px;
  border: 1px solid #000;
  outline: none;
  padding: 0 15px;
  color: #6f6f6f;
  font-size: 14px;
  border-radius: 1px;
}

.signup-email-container input:focus {
  box-shadow: none !important;
}

.signup-email-container input::placeholder {
  color: #6f6f6f;
  text-transform: uppercase;
}

.has-error .form-control {
  box-shadow: none !important;
  border: 1px solid #ff2a59;
  border-color: #ff2a59 !important;
}

.help-block,
.with-errors {
  color: #ff2a59 !important;
}

.terms-agreed {
  padding: 4% 0 1% 0;
}

label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 2% 0;
  font-size: 14px;
  font-family: "mn-light";
}

label input {
  display: none;
}

/* Style the artificial checkbox */
label span {
  height: 20px;
  width: 20px;
  border: 2px solid #000;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

/* Style its checked state...with a ticked icon */
[type="checkbox"]:checked + span:before {
  content: "\2714";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.terms-desclaimer {
  font-size: 14px;
  font-family: "mn-light";
  line-height: 180%;
}

.signup-privacy-policy {
  font-size: 14px;
  font-family: "mn-med";
  text-transform: uppercase;
  text-decoration: underline;
}

.signup-privacy-policy:hover {
  text-decoration: underline;
}

.join-us-btn-container {
  padding: 6% 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-us-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 345px;
  height: 50px;
  background: #000 !important;
  color: #fff !important;
  font-size: 16px;
  font-family: "mn-book";
  text-transform: uppercase;
  transition: all 0.2s ease-out;
  border: none;
  outline: none;
}

.join-us-btn:hover {
  letter-spacing: 1.4px;
}

@keyframes bg-scrolling-reverse {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 -10000px;
  }
}

.signup-modal-background {
  width: 100%;
  height: 100%;
  z-index: -10;
  background-image: url("/images/signup/SignUp-Bg.jpg");
  background-size: 100% auto;
  background-position: 0 0;
  animation: bg-scrolling-reverse 200s infinite linear;
  animation-timing-function: linear;
}

@media only screen and (max-width: 1600px) {
  .sign-up-modal-content {
    width: 450px;
    max-height: 700px;
  }

  .sign-up-modal-title {
    font-size: 30px;
  }

  .signup-modal-description {
    font-size: 12px;
  }

  .sign-up-form {
    width: 300px;
  }

  .signup-email-container input {
    height: 35px;
    padding: 0 10px;
    font-size: 12px;
  }

  .signup-email-container input::placeholder {
    font-size: 10px;
  }

  label {
    font-size: 11px;
  }

  label span {
    height: 14px;
    border: 1.5px solid #000;
    width: 14px;
  }

  .terms-desclaimer {
    font-size: 11px;
  }

  .signup-privacy-policy {
    font-size: 11px;
  }

  .join-us-btn {
    height: 40px;
    width: 300px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  .sign-up-modal-content {
    /* width: 333px; */
    width: 95vw;
    /* max-height: 520px; */
    height: 80vh;
    /* margin-top: -200px; */
  }

  .sign-up-modal-title {
    font-size: 23px;
  }

  .signup-modal-description {
    font-size: 12px;
  }

  .sign-up-form {
    width: 230px;
  }

  label span {
    top: -2px;
    height: 12px;
    width: 12px;
  }

  .agree-terms {
    font-size: 9px;
  }

  .terms-desclaimer {
    font-size: 9px;
    margin-top: -25px;
  }
}
