@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  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: 1.5rem;
  font-weight: 600;
}
.login--desc {
  font-size: 1rem;
}
.login--label {
  font-size: 1rem;
  font-weight: 600;
}
.login .form-input {
  width: 100%;
  padding: 8px 14px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 4px;
  border: 1px solid #CFCFCF;
  margin-top: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-weight: 400;
}
.login input:focus {
  color: #3c4d62;
  background-color: #fff;
  border-color: #667BB4;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(102, 123, 180, 0.15);
  transform: scale(1.01);
  transition: all 0.2s ease;
}
.login--button {
  width: 100%;
  border-radius: 8px;
  margin-top: 3rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #667BB4;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  padding: 0.8rem 2.5rem;
}
.login--button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 123, 180, 0.3);
}
.login--button:disabled {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}
.login--signup {
  text-decoration: none;
  color: #667BB4;
  font-size: 1rem;
  margin-top: 1rem;
}

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