@charset "UTF-8";
.auth {
  display: flex;
  justify-content: center;
  overflow-y: auto;
  -ms-overflow-style: none; /* IE 11 */
  scrollbar-width: thin; /* Firefox 64 */
  background-color: #fff;
}
.auth form {
  width: 100%;
  max-width: 520px;
  margin: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth form h2 {
  font-size: 32px;
  font-weight: normal;
  color: #03a868;
  text-align: center;
}
.auth form .error_message {
  background-color: rgba(249, 80, 3, 0.3);
  border-radius: 5px;
  margin-bottom: 16px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #777;
}
.auth form .form__group {
  margin: 16px 0;
}
.auth form .form__group label {
  color: #777;
  font-size: 16px;
  position: relative;
}
.auth form .form__group label::before {
  content: attr(data-content);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  background-color: #fff;
  transition: 0.3s;
}
.auth form .form__group label .input__btn {
  position: absolute;
  display: none;
  right: 16px;
  top: 0;
  height: 24px;
  cursor: pointer;
  transition: 0.2s;
}
.auth form .form__group label .input__btn:hover rect {
  fill: #03a868;
}
.auth form .form__group label .input__btn:hover path {
  stroke: #03a868;
}
.auth form .form__group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #c4c4c4;
  line-height: 24px;
  border-radius: 5px;
  outline: none;
}
.auth form .form__group .input__focus::before {
  top: -18px;
  font-size: 12px;
  color: #03a868;
  padding: 5px;
}
.auth form .form__group .input__focus input {
  border-color: #03a868;
}
.auth form .form__group .input__focus .input__btn {
  display: block;
}
.auth form .form__group .input__error::before {
  color: #f95003;
}
.auth form .form__group .input__error::after {
  content: attr(data-error);
  position: absolute;
  left: 0;
  bottom: -40px;
  font-size: 12px;
  color: #f95003;
}
.auth form .form__group .input__error input {
  border-color: #f95003;
}
.auth form .form__group .input__error-confirm::after {
  content: attr(data-confirm);
  position: absolute;
  font-size: 12px;
  color: #f95003;
  left: 0;
  bottom: -40px;
}
.auth form .form__group .container {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}
.auth form .form__group .container input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.auth form .form__group .container span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #777;
  margin-left: 16px;
}
.auth form .form__group .container input:checked ~ span {
  background-color: #03a868;
  border-color: transparent;
}
.auth form .form__group .container input:checked ~ span::after {
  content: "✓";
}
.auth form .form__text {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
  color: #777;
}
.auth form .form__text a {
  color: #03a868;
}
.auth form .form__btns {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.auth form .form__btns .btn {
  width: 100%;
  max-width: 190px;
  text-align: center;
  text-transform: uppercase;
  padding: 12px;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 5px;
  margin-bottom: 16px;
  border: none;
  font-size: 14px;
  font-weight: normal;
}
.auth form .form__btns .btn__default {
  color: #a8a8a8;
  border: 1px solid #a8a8a8;
}
.auth form .form__btns .btn__default:hover {
  background: linear-gradient(90deg, #03a868 0%, #00783d 100%);
  color: #fff;
  border-color: transparent;
}
.auth form .form__btns .btn__primary {
  color: #fff;
  background: linear-gradient(90deg, #03a868 0%, #00783d 100%);
}
.auth form .form__btns .btn__primary:hover {
  background: linear-gradient(90deg, #f95003 0%, #be1000 100%);
}
.auth .policy {
  width: 100%;
  max-width: 1200px;
  padding: 16px;
  white-space: pre-wrap;
  color: #777;
  font-size: 16px;
  line-height: 24px;
}
.auth .policy h2,
.auth .policy h3 {
  text-transform: uppercase;
  font-weight: normal;
  color: #03a868;
  text-align: center;
}
.auth .welcome {
  display: flex;
  flex-direction: column;
  padding: 64px 96px;
  width: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE 11 */
  scrollbar-width: none; /* Firefox 64 */
}
.auth .welcome h2 {
  font-size: 24px;
  color: #03a868;
  font-weight: normal;
  text-align: center;
  margin-bottom: 8px;
  padding-top: 40px;
}
.auth .welcome h2 span {
  color: #be1000;
}
.auth .welcome .header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth .welcome .header img {
  width: 100%;
  max-width: 450px;
}
.auth .welcome .text {
  padding: 16px;
  color: #777;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.auth .welcome .text p {
  margin-bottom: 16px;
  text-align: justify;
}
.auth .welcome .text p a {
  color: #03a868;
  font-weight: bold;
  text-decoration: underline;
}
.auth .welcome .text p i {
  font-size: 14px;
}
.auth .welcome .text ol, .auth .welcome .text ul {
  margin-left: 32px;
  margin-bottom: 16px;
}
.auth .welcome .text ol li, .auth .welcome .text ul li {
  padding: 8px 0;
}
.auth .welcome .text ul {
  list-style: disc;
}
.auth .welcome .text .center {
  text-align: center;
}
.auth .welcome .text .home {
  background-color: #03a868;
  color: #fff;
  padding: 16px 32px;
  border-radius: 5px;
  display: block;
  margin: 16px auto;
  width: max-content;
  transition: 0.2s ease-in-out;
  font-weight: bold;
}
.auth .welcome .text .home:hover {
  background-color: #027649;
}
.auth .email-verified {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.auth .email-verified h2 {
  color: #03a868;
  font-weight: normal;
  text-transform: uppercase;
}
.auth .email-verified h3 {
  font-weight: normal;
  color: #777;
}
.auth .email-verified svg {
  margin: 25px 0;
}
.auth .email-verified a {
  color: #03a868;
}

@media only screen and (max-device-width: 992px) {
  .auth .welcome {
    padding: 16px;
  }
  .auth .welcome h3 {
    padding-bottom: 32px;
  }
  .auth .welcome .cards .card {
    width: 100%;
  }
}
@media only screen and (max-device-width: 584px) {
  .auth .welcome {
    padding: 16px;
  }
}
@media only screen and (max-device-width: 480px) {
  .auth form {
    justify-content: flex-start;
  }
  .auth form .form__btns {
    gap: 10px;
  }
  .auth form .form__btns .btn {
    width: 100%;
  }
}

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