@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
html {
  font-size: 62.5%;
}

/* Mobile View */
@media only screen and (max-width: 767px) {
  html {
    font-size: 50%;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.button--state-primary {
  background-color: #667BB4;
  color: #fff;
  border: none;
}
.button--state-primary-outline {
  color: #667BB4;
  border: 2px solid #667BB4;
  background-color: #fff;
}
.button--state-secondary {
  background-color: #F7F7F7;
  color: #111;
  border: none;
}

.login {
  width: 100%;
  height: 100dvh;
}
.login--image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.login--title {
  font-size: 2rem;
  font-weight: 600;
}
.login--desc {
  font-size: 1.25rem;
}
.login--label {
  font-size: 1.25rem;
  font-weight: 600;
}
.login input {
  height: 4rem;
  font-size: 1.25rem;
  padding-left: 1.5rem;
}
.login input:focus {
  color: #3c4d62;
  background-color: #fff;
  border-color: #667BB4;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(133, 79, 255, 0.1);
}
.login--button {
  width: 100%;
  height: 4rem;
  border-radius: 5px;
  margin-top: 3rem;
  font-size: 1.3rem;
}
.login--signup {
  text-decoration: none;
  color: #667BB4;
  font-size: 1.25rem;
  margin-top: 1rem;
}

.passcode-switch {
  position: absolute;
  top: 10px;
  right: 20px;
}
.passcode-switch .passcode-icon {
  font-size: 2rem;
  color: #111;
}/*# sourceMappingURL=login.css.map */