.page-body {
  overflow-y: overlay;
}
.page-body::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
}
.page-body::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: var(--gray-5);
  border-radius: 4px;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.page-body::-webkit-scrollbar-thumb:hover {
  background-color: var(--gray-6);
  cursor: pointer;
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}

.view-sign-up {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576.98px) {
  .view-sign-up {
    height: auto;
    padding: 0 1.5rem;
  }
}
.view-sign-up .card {
  width: 630px;
  margin-top: 3rem;
  background-color: var(--primary);
}
@media (max-width: 576.98px) {
  .view-sign-up .card {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.view-sign-up .card .card-header {
  background-color: var(--primary);
}
.view-sign-up .card .card-header h6 {
  color: var(--white);
}
.view-sign-up .card .card-body .row {
  margin-bottom: 2rem;
}
@media (max-width: 576.98px) {
  .view-sign-up .card .card-body .row {
    margin-bottom: 0;
  }
}
@media (max-width: 576.98px) {
  .view-sign-up .card .card-body .row > div {
    margin-bottom: 1.5rem;
  }
}
.view-sign-up .card .card-body .row > div .btn {
  width: 100%;
  height: 250px;
  background-color: var(--gray-1);
  position: relative;
  opacity: 0.8;
  border-radius: 1rem;
}
@media (max-width: 576.98px) {
  .view-sign-up .card .card-body .row > div .btn {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.view-sign-up .card .card-body .row > div .btn:hover {
  opacity: 1;
}
.view-sign-up .card .card-body .row > div .btn.active {
  opacity: 1;
}
.view-sign-up .card .card-body .row > div .btn img {
  height: 122px;
  margin-bottom: 0.75rem;
}
@media (max-width: 576.98px) {
  .view-sign-up .card .card-body .row > div .btn img {
    height: 40px;
    margin-right: 1rem;
  }
}
.view-sign-up .card .card-body .row > div .btn h6.subtitle-sm {
  font-weight: 600;
}
.view-sign-up .card .card-body .row > div .btn i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
@media (max-width: 576.98px) {
  .view-sign-up .card .card-body .row > div .btn i {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.view-sign-up .card .card-body .row > div .btn i.els {
  color: var(--primary);
}
.view-sign-up .card .card-body form .form-errors {
  padding: 1.5rem;
  background-color: var(--danger);
  display: none;
  border-radius: 0.5rem;
}
.view-sign-up .card .card-body form .form-errors p {
  color: var(--white);
}
.view-sign-up .card .card-body form .form-errors p:not(:last-child) {
  margin-bottom: 0.75rem;
}
.view-sign-up .card .card-body form .form-group .input-group .btn-toggle-password .toggle-password {
  position: relative;
}
.view-sign-up .card .card-body form .form-group .input-group .btn-toggle-password .toggle-password.show:after {
  content: "";
  height: 1px;
  width: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  background-color: var(--black);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.view-sign-up .card .card-footer {
  height: 52px;
  padding: 0;
}
.view-sign-up .card .card-footer .btn {
  width: 100%;
  height: 100%;
  border-top-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -o-border-top-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-top-right-radius: 0;
  -o-border-top-right-radius: 0;
  border-bottom-left-radius: 0.5rem;
  -webkit-border-bottom-left-radius: 0.5rem;
  -moz-border-bottom-left-radius: 0.5rem;
  -o-border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  -webkit-border-bottom-right-radius: 0.5rem;
  -moz-border-bottom-right-radius: 0.5rem;
  -o-border-bottom-right-radius: 0.5rem;
}
.view-sign-up .social {
  width: 630px;
  margin-top: 2rem;
  padding: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 576.98px) {
  .view-sign-up .social {
    width: 100%;
    margin-top: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.view-sign-up .social .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  height: 40px;
}
@media (max-width: 576.98px) {
  .view-sign-up .social .btn {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
.view-sign-up .social .btn:not(:last-child) {
  margin-right: 1.5rem;
}
@media (max-width: 576.98px) {
  .view-sign-up .social .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=k12_signup.css.map */