:root {
  --color-1: #005AA6;
}

a {
  text-decoration: none;
}

.btn-1 {
  display: inline-block;
  padding: 11px 20px 11px 50px;
  background-color: var(--color-1);
  position: relative;
  border-radius: 40px;
  font-size: 16px;
  top: 12px;
  color: #fff;
  border: 1px solid #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.btn-1.download {
  background-color: var(--color-1);
}
.btn-1 .fa {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  color: #000;
}

/* INDEX PAGE */
.combined-section {
  max-width: 480px;
  margin: 10px auto 10px;
  /* MEDIA QUERY FOR COMBINED SECTION */
}
.combined-section h2.title {
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: bold;
}
.combined-section .user-type#student:checked ~ .tab-model label[for=student] {
  background-color: var(--color-1);
  border-color: var(--color-1);
  color: #fff;
}
.combined-section .user-type#nurse:checked ~ .tab-model label[for=nurse] {
  background-color: var(--color-1);
  border-color: var(--color-1);
  color: #fff;
}
.combined-section .user-type#nurse:checked ~ .tab-model ~ .new-form-holder::before {
  left: 245px;
}
@media (max-width: 559px) {
  .combined-section .user-type#nurse:checked ~ .tab-model ~ .new-form-holder::before {
    left: 215px;
  }
}
.combined-section .user-type#nurse:checked ~ .tab-model ~ .new-form-holder form.form-student {
  display: none;
}
.combined-section .user-type#nurse:checked ~ .tab-model ~ .new-form-holder form.form-nurse {
  display: block;
}
.combined-section .tab-model {
  margin: 10px 0 25px;
}
.combined-section .tab-model label {
  display: inline-block;
  background-color: green;
  border-radius: 10px;
  padding: 6px 18px 8px;
  font-size: 17px;
  background-color: #eee;
  border: 1px solid #aaa;
  cursor: pointer;
}
@media (max-width: 559px) {
  .combined-section .tab-model label {
    font-size: 14px;
  }
}
.combined-section .new-form-holder {
  padding: 30px;
  border: 3px solid var(--color-1);
  border-radius: 10px;
  z-index: 10;
  position: relative;
  background-color: #fff;
}
@media (max-width: 991px) {
  .combined-section .new-form-holder {
    margin: auto;
    border-radius: 0;
  }
}
.combined-section .new-form-holder::before {
  content: "";
  position: absolute;
  left: 60px;
  top: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--color-1);
  transition: 0.6s ease;
}
@media (max-width: 559px) {
  .combined-section .new-form-holder::before {
    left: 50px;
  }
}
.combined-section .new-form-holder form.form-nurse {
  display: none;
}
@media (max-width: 559px) {
  .combined-section {
    margin: 10px;
  }
  .combined-section .new-form-holder {
    padding: 10px;
    border: none;
    border-top: 3px solid var(--color-1);
  }
}

.success-holder {
  max-width: 500px;
  margin: 40px auto;
  border-radius: 6px;
  overflow: hidden;
}
.success-holder .success-box {
  padding: 30px;
  background-color: #e0f7e0;
}
.success-holder .success-box h1 {
  text-align: center;
  margin: 20px 0;
}
.success-holder .success-box h1 span {
  display: inline-block;
  --v: 80px;
  width: var(--v);
  height: var(--v);
  border-radius: var(--v);
  line-height: var(--v);
  border: 3px solid #222;
}
.success-holder .success-box p.socials span {
  display: inline-block;
  font-size: 22px;
}
.success-holder .success-box p.socials a {
  display: inline-block;
  margin: 0 1px 0;
  background-color: var(--color-1);
  color: #fff;
  border-radius: 4px;
  --v: 30px;
  width: var(--v);
  height: var(--v);
  line-height: 28px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 559px) {
  .success-holder .success-box p.socials b {
    display: block;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .success-holder {
    margin: 0;
    min-height: calc(100vh - 150px);
    max-width: 100%;
    background-color: #e0f7e0;
    display: flex;
  }
  .success-holder .success-box {
    margin: auto;
  }
}

section.copyrights {
  padding: 10px 10px;
  background-color: #eee;
}
section.copyrights p {
  color: #222;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-size: 13px;
}
section.copyrights a {
  color: inherit;
}

/* MEDIA QURIES */
.visible-sm-xs,
.visible-xs {
  display: none;
}

@media (max-width: 991px) {
  .hidden-sm-xs {
    display: none;
  }
  .visible-sm-xs {
    display: block;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block;
  }
  .hidden-xs {
    display: none !important;
  }
}/*# sourceMappingURL=nhs.css.map */