html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: left;
  height: 100vh;
}

.root-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  height: 68px;
}

header h1 {
  font-size: 18.8px;
  text-align: right;
  font-weight: bold;
  margin: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
  max-width: 1172px;
  padding: 0 16px;
  height: 100%;
}

.header-logo {
  height: 29.7px;
}

/* MAIN */
main {
  flex-grow: 1;
  padding-top: 50px;
}

.layout-container {
  max-width: 1172px;
  padding: 0 16px;
  margin: 0 auto;
}
@media (max-width: 1189px) {
  .layout-container {
    padding: 0;
  }
}

/* PANEL */
.woz-panel {
  width: 500px;
  margin: 0 auto;
  padding: 40px 30px;
}
@media (max-width: 640px) {
  .woz-panel {
    width: 100%;
    padding: 39px 14px 47px;
  }
}

.woz-panel h2 {
  font-weight: bold;
  font-size: 40px;
  margin: 0 0 16px;
  text-align: center;
}

.woz-panel p {
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0 18px;
}

.woz-panel h3 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0 18px;
}

.woz-panel form {
  margin: 18px 0 25px;
}

.woz-panel > a {
  margin: 20px 0;
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  font-weight: bold;
  width: 100%;
  display: block;
}

.woz-panel .disclaimer {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  margin: 25px 0;
  font-weight: 200;
}

/* INPUTS */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  line-height: 1.375;
  margin-bottom: 1px;
}

input.form-control {
  height: 44px;
  line-height: 1.5;
  box-shadow: #ffffff 0px 0px 0px 1000px inset;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  background-color: #ffffff !important;
  color: #4a4a4a !important;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  border-image: initial;
  padding: 6px 12px;
  border-radius: 0;
  font-size: 16px;
}

.form-group span.text-danger {
  font-size: 14px;
}

.checkbox input[type="checkbox"] {
  opacity: 0;
}

.checkbox label {
  position: relative;
  display: inline-block;

  /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
  padding-left: 22px;
}

.checkbox label::before,
.checkbox label::after {
  position: absolute;
  content: "";

  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before {
  height: 16px;
  width: 16px;

  border: 1px solid;
  left: 0px;

  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
   *to vertically center it.
   */
  top: 3px;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
  height: 5px;
  width: 9px;
  border-left: 2px solid;
  border-bottom: 2px solid;

  transform: rotate(-45deg);

  left: 4px;
  top: 7px;
}

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after {
  content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after {
  content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before {
  outline: rgb(59, 153, 252) auto 5px;
}

/* BUTTON */
.woz-button {
  position: relative;
  margin-bottom: 6px;
  padding: 0.5em 0.65em;
  display: block;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  /* Size */
  min-height: 66px;
  width: 100%;
  font-size: 24px;
  /* Color */
  background-color: #70e0d3;
  box-shadow: 0 6px 0 0 #469685;
  color: #092430;
}
@media (max-width: 640px) {
  .woz-button {
    width: 100% !important;
  }
}
.woz-button:hover:not([disabled]),
.woz-button:focus:not([disabled]) {
  top: 2px;
  background-color: #63c6bb;
  box-shadow: 0 4px 0 0 #469685;
}
.woz-button:active:not([disabled]) {
  /** Remove 3D Block Effect on Click **/
  box-shadow: none;
  top: 6px;
  background-color: #469685;
}
.woz-button:focus {
  /** Remove Chrome's Ugly Yellow Outline **/
  outline: 0;
}
.woz-button:disabled {
  cursor: not-allowed;
}

.woz-button--social {
  min-height: 44px;
  width: 380px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 25px;
  text-align: left;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
}
.woz-button--social:hover:not([disabled]),
.woz-button--social:focus:not([disabled]) {
  top: 2px;
}
.woz-button--social:active:not([disabled]) {
  top: 6px;
}
.woz-button--social img {
  height: 24px;
  width: 24px;
  margin-right: 9px;
}
.woz-button--social span {
  line-height: 19px;
  margin-bottom: 1px;
}
.woz-button--facebook {
  background-color: #3b5998;
  box-shadow: 0 6px 0 0 #314a7e;
}
.woz-button--facebook:hover:not([disabled]),
.woz-button--facebook:focus:not([disabled]) {
  background-color: #4a66a0;
  box-shadow: 0 4px 0 0 #415888;
}
.woz-button--facebook:active:not([disabled]) {
  background: #5b74a9;
  box-shadow: none;
}
.woz-button--github {
  background-color: #168738;
  box-shadow: 0 6px 0 0 #0f5623;
}
.woz-button--github:hover:not([disabled]),
.woz-button--github:focus:not([disabled]) {
  background-color: #136f2e;
  box-shadow: 0 4px 0 0 #0f5623;
}
.woz-button--github:active:not([disabled]) {
  background: #0f5623;
  box-shadow: none;
}
.woz-button--google {
  background-color: #c94534;
  box-shadow: 0 6px 0 0 #892d23;
}
.woz-button--google:hover:not([disabled]),
.woz-button--google:focus:not([disabled]) {
  background-color: #a5392b;
  box-shadow: 0 4px 0 0 #892d23;
}
.woz-button--google:active:not([disabled]) {
  background: #892d23;
  box-shadow: none;
}
.woz-button--microsoft {
  background-color: #0074d3;
  box-shadow: 0 6px 0 0 #004d89;
}
.woz-button--microsoft:hover:not([disabled]),
.woz-button--microsoft:focus:not([disabled]) {
  background-color: #005fad;
  box-shadow: 0 4px 0 0 #004d89;
}
.woz-button--microsoft:active:not([disabled]) {
  background: #004d89;
  box-shadow: none;
}

.woz-social-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FOOTER */
footer {
  text-align: center;
  margin: 50px 1em 0.5em;
  position: relative;
  line-height: 1.4;
  font-size: 14px;
}

footer span {
  white-space: nowrap;
}

footer a {
  text-decoration: none;
  white-space: nowrap;
}

footer a:hover {
  text-decoration: underline;
}

/* UTILS */
.hide-on-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
  .hide-on-mobile {
    display: inherit !important;
  }
}

.font-nunito {
  font-family: "Nunito Sans", sans-serif;
}

.no-wrap {
  white-space: nowrap;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

/* CLIENT LOGIN CONTAINER */
.client-login-container {
  display: flex;
  min-height: 63px;
  margin: 15px 0;
  align-items: center;
}

.client-login-name-container {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.client-login-name-container h3 {
  font-size: 18px;
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.client-login-name-container p {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: normal;
}

/* TOS */
div.license-agreement {
  padding: inherit;
  width: inherit;
  height: 500px;
  background-color: white;
  border: solid 1px black;
  overflow: auto;
  font-size: 16px;
  line-height: 1.38;
  color: #484848;
  padding: 20px;
  font-family: "Nunito Sans", sans-serif;
}

.license-agreement p {
  font-size: 16px;
  line-height: 1.38;
  color: #484848;
  font-weight: normal;
}

.license-agreement a {
  color: #4a4a4a;
}

.tos-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tos-buttons button {
  font-weight: bold;
  font-size: 16px;
  width: 250px;
  margin-left: 0.5em;
  margin-top: 1em !important;
}

@media (max-width: 640px) {
  .tos-buttons button {
    width: 100% !important;
    margin-left: 0;
  }
}

.tos-buttons > .btn.btn-success {
  background-color: #70e0d3;
  color: #092430;
}

.tos-buttons > .btn.btn-success:hover {
  background-color: #63c6bb;
}
