@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html, body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  width: 100vw;
  min-height: 100vh;
  background: #e5e5e5;
}

html div.spinnerOverlay, body div.spinnerOverlay {
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
}

html div.spinnerOverlay svg.svgSpinner, body div.spinnerOverlay svg.svgSpinner {
  color: #3C80B2;
  fill: #3C80B2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

html header, body header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 28px 0;
}

html section, body section {
  min-height: calc( 100vh - 371px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html section .register_new, body section .register_new {
  background: white;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
}

@media (min-width: 320px) {
  html section .register_new, body section .register_new {
    width: 96vw;
  }
}

@media (min-width: 768px) {
  html section .register_new, body section .register_new {
    width: 450px;
  }
}

html section .register_new h1, body section .register_new h1 {
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-top: 0;
}

html section .register_new form, body section .register_new form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html section .register_new form .sub_types, body section .register_new form .sub_types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html section .register_new form .sub_types span, body section .register_new form .sub_types span {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
  color: #1f1f1f;
}

html section .register_new form .sub_types .sub_options, body section .register_new form .sub_types .sub_options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

html section .register_new form .sub_types .sub_options label, body section .register_new form .sub_types .sub_options label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1f1f1f;
  font-size: 1rem;
  margin-right: 15px;
}

html section .register_new form .sub_types .sub_options label input[type='radio'], body section .register_new form .sub_types .sub_options label input[type='radio'] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

html section .register_new form .sub_types .sub_options label input[type='radio']:before, body section .register_new form .sub_types .sub_options label input[type='radio']:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(31, 31, 31, 0.15);
  z-index: 1;
  border-radius: 50%;
}

html section .register_new form .sub_types .sub_options label input[type='radio']:checked:before, body section .register_new form .sub_types .sub_options label input[type='radio']:checked:before {
  content: "";
  border: none;
  background: url("../assets/check.svg") no-repeat top left;
}

html section .register_new form .sub_types .fee, body section .register_new form .sub_types .fee {
  padding: 6px;
  border: 1px dashed rgba(31, 31, 31, 0.25);
}

html section .register_new form .sub_types .fee p, body section .register_new form .sub_types .fee p {
  font-size: 1rem;
}

html section .register_new form .fields, body section .register_new form .fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html section .register_new form .fields .field-row, body section .register_new form .fields .field-row {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

html section .register_new form .fields .field-row .field, body section .register_new form .fields .field-row .field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

html section .register_new form .fields .field-row .field > input, body section .register_new form .fields .field-row .field > input {
  width: 100%;
  background: none;
  outline: none;
  border: 1px solid rgba(31, 31, 31, 0.15);
  padding: 10px;
  font-size: 1.125rem;
  color: #1f1f1f;
}

html section .register_new form .fields .field-row .field.fname, body section .register_new form .fields .field-row .field.fname {
  width: 48%;
  margin-right: 2%;
}

html section .register_new form .fields .field-row .field.checkbox, body section .register_new form .fields .field-row .field.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin: 10px 0 20px 0;
}

html section .register_new form .fields .field-row .field.checkbox label, body section .register_new form .fields .field-row .field.checkbox label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  color: #9e9e9e;
}

html section .register_new form .fields .field-row .field.checkbox label input, body section .register_new form .fields .field-row .field.checkbox label input {
  width: 36px;
  height: 36px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 15px;
  position: relative;
}

html section .register_new form .fields .field-row .field.checkbox label input:before, body section .register_new form .fields .field-row .field.checkbox label input:before {
  content: "";
  width: 36px;
  cursor: pointer;
  height: 36px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(31, 31, 31, 0.15);
}

html section .register_new form .fields .field-row .field.checkbox label input:checked:after, body section .register_new form .fields .field-row .field.checkbox label input:checked:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 11px;
  z-index: 1;
  width: 16px;
  height: 16px;
  background: #f4a300;
}

html section .register_new form .fields .field-row .field.checkbox label a, body section .register_new form .fields .field-row .field.checkbox label a {
  color: black;
  text-decoration: underline;
  font-weight: 500;
  margin: 0 5px;
}

html section .register_new form .fields button, body section .register_new form .fields button {
  border: none;
  outline: none;
  padding: 15px 0;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEB42B), to(#FD8D26));
  background: linear-gradient(180deg, #FEB42B 0%, #FD8D26 100%);
  border-radius: 400px;
}

html section .register_new form #enterprise button[type="button"], body section .register_new form #enterprise button[type="button"] {
  font-size: 1rem;
  color: white;
  background: #3b7cad;
  padding: 10px 0;
  border: 0;
  outline: 0;
  border-radius: 400px;
}

html section p, body section p {
  text-align: center;
  font-size: 1.4rem;
  color: #9e9e9e;
  margin-top: 15px;
}

html section p a, body section p a {
  color: black;
  font-weight: 500;
  text-decoration: underline;
}

html footer, body footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 0;
}

html footer p, body footer p {
  margin: 0;
  text-align: center;
  font-size: 1.125rem;
  color: rgba(31, 31, 31, 0.3);
}

body.enterprise div.spinnerOverlay {
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
}

body.enterprise div.spinnerOverlay svg.svgSpinner {
  color: #3C80B2;
  fill: #3C80B2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body.enterprise .sub_options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

body.enterprise .sub_options label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1f1f1f;
  font-size: 1rem;
  margin-right: 25px;
}

body.enterprise .sub_options label input[type='radio'] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

body.enterprise .sub_options label input[type='radio']:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(31, 31, 31, 0.15);
  z-index: 1;
  border-radius: 50%;
}

body.enterprise .sub_options label input[type='radio']:checked:before {
  content: "";
  border: none;
  background: url("../assets/check-blue.svg") no-repeat top left !important;
}

body.enterprise button {
  border: none;
  outline: none;
  padding: 15px 0;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(#3A79A8), to(#3C80B2)) !important;
  background: linear-gradient(180deg, #3A79A8 0%, #3C80B2 100%) !important;
}
/*# sourceMappingURL=register.css.map */