@font-face {
  font-family: "latoregular";
  src: url("fonts/lato/woff/lato-regular-webfont.woff") format("woff2"), url("fonts/lato/woff/lato-regular-webfont.woff2") format("woff"), url("fonts/lato/woff/lato-regular-webfont.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoregular";
  src: url("fonts/lato/woff/lato-bold-webfont.woff") format("woff2"), url("fonts/lato/woff/lato-bold-webfont.woff2") format("woff"), url("/fonts/lato/woff/lato-bold-webfont.ttf") format("ttf");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "latoregular";
  src: url("fonts/lato/woff/lato-light-webfont.woff") format("woff2"), url("fonts/lato/woff/lato-light-webfont.woff2") format("woff"), url("fonts/lato/woff/lato-light-webfont.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}
html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: latoregular;
}

.theme-light {
  color: #8a8e9d;
  background-color: #fff;
}

.theme-dark {
  color: #909090;
  background-color: #1b1b1b;
}

.wrapper {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.container {
  max-width: 450px;
  width: 100%;
}

.logo {
  display: block;
  margin: 0 auto 40px auto;
  width: 70%;
  max-width: 300px;
}

.card {
  padding: 40px 10vw;
  border-radius: 18px;
}
.theme-light .card {
  box-shadow: 0 0 25px 0 rgba(60, 66, 91, 0.2);
}
.theme-dark .card {
  box-shadow: 0 0 25px 0 #4c4c4c;
}
@media screen and (min-width: 600px) {
  .card {
    padding: 50px 60px;
  }
}
.card__header {
  font-size: 20px;
  text-align: center;
  margin: 0;
}
.card__subheader {
  font-size: 20px;
  text-align: center;
  margin: 20px 0 0 0;
}

.form {
  margin-top: 50px;
}
.form__error {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.theme-light .form__error {
  color: #d50015;
}
.theme-dark .form__error {
  color: #b00011;
}
.form__footer {
  text-align: right;
}

.form-field {
  margin-bottom: 20px;
  position: relative;
}
.form-field__input {
  box-sizing: border-box;
  display: block;
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0 1em;
  width: 100%;
  border-radius: 18px;
  border: none;
  height: 3em;
  outline: none;
}
.theme-light .form-field__input {
  color: #8a8e9d;
  box-shadow: inset 0 0 6px 0 rgba(138, 142, 157, 0.9);
  background-color: #ffffff;
}
.theme-light .form-field__input::placeholder {
  color: #cfcfcf;
}
.theme-dark .form-field__input {
  color: #ffffff;
  box-shadow: inset 0 0 5px 0 rgba(255, 255, 255, 0.5);
  background-color: #121212;
}
.theme-dark .form-field__input::placeholder {
  color: #909090;
}
.theme-light .form-field__input:focus {
  box-shadow: inset 0 0 6px 0 rgba(73, 73, 73, 0.9);
}
.theme-dark .form-field__input:focus {
  box-shadow: inset 0 0 5px 0 white;
}

.button {
  position: relative;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1;
  margin: 0;
  padding: 0 2.1em;
  border-width: 2px;
  border-style: solid;
  height: 3em;
  border-radius: 18px;
  cursor: pointer;
  outline: none;
  transition: all 300ms ease;
}
.theme-light .button {
  color: #3c425b;
  background-color: #ffffff;
  border-color: #3c425b;
}
.theme-dark .button {
  color: #5365b4;
  background-color: #1b1b1b;
  border-color: #5365b4;
}

.theme-light.theme-color-yellow .button {
  color: #bf9900;
  border-color: #bf9900;
}
.theme-light.theme-color-red .button {
  color: #d50015;
  border-color: #d50015;
}
.theme-light.theme-color-green .button {
  color: #008000;
  border-color: #008000;
}
.theme-light.theme-color-blue .button {
  color: #008fd0;
  border-color: #008fd0;
}
.theme-light.theme-color-orange .button {
  color: #f76200;
  border-color: #f76200;
}
.theme-light.theme-color-purple .button {
  color: #af52de;
  border-color: #af52de;
}
.theme-light.theme-color-monochrome .button {
  color: #000000;
  border-color: #000000;
}
.theme-dark.theme-color-yellow .button {
  color: #c8a600;
  border-color: #c8a600;
}
.theme-dark.theme-color-red .button {
  color: #b00011;
  border-color: #b00011;
}
.theme-dark.theme-color-green .button {
  color: #007700;
  border-color: #007700;
}
.theme-dark.theme-color-blue .button {
  color: #0077ad;
  border-color: #0077ad;
}
.theme-dark.theme-color-orange .button {
  color: #d35400;
  border-color: #d35400;
}
.theme-dark.theme-color-purple .button {
  color: #903db9;
  border-color: #903db9;
}
.theme-dark.theme-color-monochrome .button {
  color: #ffffff;
  border-color: #ffffff;
}
.theme-light .button:hover {
  color: #ffffff;
  background-color: #3c425b;
}
.theme-dark .button:hover {
  color: #ffffff;
  background-color: #5365b4;
}
.theme-light.theme-color-yellow .button:hover {
  background-color: #bf9900;
}
.theme-light.theme-color-red .button:hover {
  background-color: #d50015;
}
.theme-light.theme-color-green .button:hover {
  background-color: #008000;
}
.theme-light.theme-color-blue .button:hover {
  background-color: #008fd0;
}
.theme-light.theme-color-orange .button:hover {
  background-color: #f76200;
}
.theme-light.theme-color-purple .button:hover {
  background-color: #af52de;
}
.theme-light.theme-color-monochrome .button:hover {
  background-color: #000000;
}
.theme-dark.theme-color-yellow .button:hover {
  background-color: #c8a600;
}
.theme-dark.theme-color-red .button:hover {
  background-color: #b00011;
}
.theme-dark.theme-color-green .button:hover {
  background-color: #007700;
}
.theme-dark.theme-color-blue .button:hover {
  background-color: #0077ad;
}
.theme-dark.theme-color-orange .button:hover {
  background-color: #d35400;
}
.theme-dark.theme-color-purple .button:hover {
  background-color: #903db9;
}
.theme-dark.theme-color-monochrome .button:hover {
  background-color: #ffffff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 9999s;
  transition-delay: 9999s;
}

input:-webkit-autofill::first-line {
  font-family: latoregular;
  font-size: 20px;
  font-weight: normal;
}

/*# sourceMappingURL=styles.css.map */
