/* sass --watch public/scss:public/css */
/* New Hirer Signup */
.nhs-wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(15, 15, 15, 0.61);
  z-index: 99999;
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nhs-container {
  width: 850px;
  background: white;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.44);
  position: relative;
  height: 710px;
  font-size: 20px;
  color: #3c3c3b;
}

.nhs-container-content {
  padding: 4rem 0;
  overflow: auto;
  height: 100%;
  box-sizing: border-box;
}

a.nhs-close-icon {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4FDFCB;
  border-radius: 100%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 15px;
}

.nhs-step {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0px;
  display: none;
  flex-direction: column;
  height: 100%;
}

.nhs-step.show {
  display: flex;
}

h1.nhs-h1 {
  text-align: center;
  font-size: 55px;
  line-height: 1;
  font-family: roobert, helvetica, arial;
  color: #7A40FF;
  margin: 0 0 2rem 0;
}

.nhs-state-list {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
  width: 575px;
  justify-content: space-between;
}

.nhs-state {
  width: 270px;
  height: 55px;
  border: 2px solid #7448FF;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  color: #7A40FF;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.4s ease;
  cursor: pointer;
}

.nhs-state.selected {
  background: #7A40FF;
  color: white;
}

a.nhs-back-button {
  position: absolute;
  left: 34px;
  top: 34px;
}

.nhs-input-two {
  display: flex;
}

.nhs-input-two input.nhs-input {
  width: 280px;
}

.nhs-input-two input.nhs-input:first-child {
  margin-right: 15px;
}

input.nhs-input {
  height: 45px;
  width: 575px;
  padding-left: 19px;
  padding-right: 19px;
  border: 1px solid #CECECE;
  border-radius: 5px;
  outline: none;
  font-size: 18px;
  color: #545757;
  font-weight: bold;
  line-height: 45px;
  margin-bottom: 15px;
}

input.nhs-input::placeholder {
  color: #A3A3A3;
}

.nhs-signup-form {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
}

.nhs-password-terms {
  width: 575px;
  display: flex;
  justify-content: space-between;
}

label[for=nhsshowpassword] {
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.nhs-switch-text {
  font-size: 16px;
  /* color: #9C9C9C; */
  margin-right: 25px;
}

span.nhs-switch {
  position: relative;
  height: 27px;
}

span.nhs-switch-knob {
  border-radius: 100%;
  width: 27px;
  height: 27px;
  background: #020202;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  color: white;
  font-size: 14px;
  line-height: 27px;
  font-weight: 900;
  z-index: 3;
}

span.nhs-switch-bar {
  width: 45px;
  height: 16px;
  display: block;
  background: #545757;
  border-radius: 16px;
  position: absolute;
  top: 6px;
  z-index: 2;
}

.nhs-switch.active span.nhs-switch-knob {
  left: 18px;
  background: #7A40FF;
}

.nhs-switch.active span.nhs-switch-bar {
  background: #7A40FF;
}

label[for=nhstermsinput] {
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.nhs-checkbox {
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  border: 2px solid #545757;
  border-radius: 100%;
  margin-right: 14px;
}

span.nhs-checkbox-fill {
  display: none;
  width: 10px;
  height: 10px;
  background: #545757;
  border-radius: 100%;
  flex-grow: 0;
}

.nhs-checkbox.active span.nhs-checkbox-fill {
  display: flex;
}

span.nhs-checkbox-text {
  font-size: 16px;
  color: #545757;
}

span.nhs-checkbox-text a {
  color: inherit;
  font-weight: bold;
}

.nhs-signup-form input.nhs-input:last-child {
  margin-bottom: 10px;
}

.nhs-submit-btn,
a.nhs-a-btn,
.nhs-form-submit-btn {
  width: 575px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #7A40FF;
  border-radius: 5px;
  color: white;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

a.btn-hollow {
  background-color: transparent;
  color: #7A40FF;
  border: 3px solid #7A40FF;
}

.btn-container {
  margin-top: auto;
}

.nhs-container p {
  margin-bottom: 1em;
  max-width: 575px;
}

.nhs-container p a {
  color: #555353;
  font-weight: bold;
}

.nhs-hirer-cancel-step p {
  text-align: center;
}

a.nhs-a-btn + p {
  margin-bottom: 20px;
  text-align: center;
}

.nhs-container .nhs-hirer-completed-step p {
  text-align: center;
}

@media screen and (max-width: 1366px) and (min-width: 1200px) {
  h1.nhs-h1 {
    font-size: 60px;
    margin: 30px 0;
  }

  .nhs-state {
    height: 50px;
    margin-bottom: 18px;
  }

  .nhs-submit-btn {
    height: 50px;
    margin-bottom: 22px;
    font-size: 16px;
    margin-top: 25px;
  }

  input.nhs-input {
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 20px;
  }

  span.nhs-switch-text {
    font-size: 18px;
    margin-right: 20px;
  }

  span.nhs-checkbox-text {
    font-size: 14px;
  }

  .nhs-form-submit-btn, a.nhs-a-btn {
    height: 50px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 20px;
  }

  .nhs-container p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .nhs-hirer-cancel-step a.nhs-a-btn.b {
    margin-top: 50px;
  }
}

/*# sourceMappingURL=signup-modal.css.map */
