body {
  background: url("/assets/img/auth_bg.webp") no-repeat center center fixed;
  background-size: cover;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

::-moz-selection {
  background: rgba(255, 224, 27, 0.15);
}

::selection {
  background: rgba(255, 224, 27, 0.15);
}

.center {
  width: 630px;
  max-width: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

form {
  width: 480px;
  max-width: calc(100% - 40px);
  margin: 0 20px;
}
form h1 {
  font-family: "Brygada 1918", serif;
  font-size: 2.7em;
  margin: 15px 0 0.4em;
}
form a {
  color: rgb(0, 124, 137);
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 1px;
}
form a:hover {
  color: #004e56;
}
form p {
  margin: 0 0 30px;
}
form p:last-child {
  text-align: center;
}
form p:last-child a {
  margin: 0 5px;
}
form .field-wrapper {
  display: flex;
  flex-direction: column;
}
form .field-wrapper label {
  color: #241c15;
  font-weight: 500;
  display: block;
  max-width: 635px;
  padding-bottom: 12px;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
form .field-wrapper input {
  height: 44px;
  border: 1px solid rgba(36, 28, 21, 0.3);
  font-size: 17px;
  padding: 0 15px;
  border-radius: 2px;
  margin-bottom: 24px;
  transition: border 0.2s, box-shadow 0.2s;
}
form .field-wrapper input:focus {
  outline: none;
  border: 1px solid #007c89;
  box-shadow: inset 0 0 0 1px #007c89;
}
form button {
  color: #ffffff;
  background-color: #007c89;
  padding: 0 42px;
  width: 100%;
  height: 48px;
  line-height: 46px;
  border: 0;
  outline: 0;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 10px auto 30px;
}
form button:hover {
  background-color: #006570;
}

.error {
  background: #fbeeca;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  padding: 14px 0;
  margin-bottom: 15px;
}
.error svg {
  float: left;
  height: 26px;
  margin: 0 20px;
}
.error p {
  margin: 0;
}
.error p:first-child {
  margin-bottom: 5px;
}

.footer {
  color: rgba(36, 28, 21, 0.65);
  font-size: 12px;
  margin: 0;
  padding: 12px 15px;
  align-self: flex-start;
}

.radio_input {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.radio_input label {
  margin-left: 10px;
  font-size: 14px;
}
.radio_input input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(36, 28, 21, 0.3);
  border-radius: 2px;
  transform: translateY(-0.075em);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}
.radio_input input[type=checkbox]:focus {
  outline: none;
  border: 1px solid #007c89;
  box-shadow: inset 0 0 0 1px #007c89;
}
.radio_input input[type=checkbox]::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 100ms opacity ease-in-out;
  background-color: #007c89;
  background-image: url("/assets/img/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 81%;
}
.radio_input input[type=checkbox]:checked {
  border: 1px solid #007c89;
}
.radio_input input[type=checkbox]:checked::before {
  opacity: 1;
}

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