html {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
body {
  margin: 0;
}
.zero-state {
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.center.success svg,
.flex.center.error svg {
  margin-right: 10px;
  width: 50px;
}
.flex.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex.grow > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.flex + .flex {
  margin-top: 10px;
}
.browser-msie .flex.center {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .os-ios select,
  .os-ios textarea,
  .os-ios input {
    font-size: 16px !important;
  }
}
form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
form .form-field + .form-field {
  margin-top: 15px;
}
form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
form .error {
  padding: 10px 20px;
  margin: 0;
  margin-top: 10px;
}
form footer {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 15px 15px;
}
form.non-centered {
  max-width: none;
  margin-left: inherit;
  margin-right: inherit;
}
.splash-screen {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.splash-screen .splash-logo {
  width: 80%;
  max-width: 600px;
  margin-top: 20vh;
  -webkit-animation: splash-fadein 4s;
          animation: splash-fadein 4s;
}
@-webkit-keyframes splash-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes splash-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.f8a8c97e.css.map*/