@font-face {
  font-family: "unique";
  src: url("./fonts/Unique.ttf") format("truetype");
}
@font-face {
  font-family: "itim";
  src: url("./fonts/Itim.otf") format("opentype");
}
.bgdark {
  background-color: #15181d;
  transition: 0.2s;
}

.bgclear {
  background-color: #ffc2fa;
  transition: 0.2s;
}

* {
  font-family: "itim";
  font-weight: normal;
  font-style: normal;
}

body {
  color: rgb(255, 252, 235);
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body input#checkboxInput {
  display: none;
}
body input#checkboxInput:checked + .toggleSwitch {
  background-color: #15181d;
  transition-duration: 0.2s;
}
body input#checkboxInput:checked + .toggleSwitch::after {
  transform: translateX(100%);
  transition-duration: 0.2s;
  background-color: #ffc2fa;
}
body img.logo {
  width: 300px;
  position: relative;
  top: -50px;
}
body label.toggleSwitch {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 50px;
  height: 30px;
  background-color: #ffc2fa;
  border-radius: 20px;
  cursor: pointer;
  transition-duration: 0.2s;
  position: absolute;
  top: 5%;
  left: 5%;
}
body label.toggleSwitch::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  left: 5px;
  background-color: #15181d;
  border-radius: 50%;
  transition-duration: 0.2s;
  box-shadow: 5px 2px 7px rgba(8, 8, 8, 0.26);
  border: 5px solid rgb(255, 76, 76);
}
body form.loginput {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
body form.loginput input {
  box-shadow: 2.5px 3px 4px rgba(147, 147, 147, 0.4901960784);
  border: 1.5px solid #3dff5d;
  background-color: rgb(43, 41, 41);
  color: rgb(255, 252, 235);
  max-width: 190px;
  padding: 0.875rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  outline: none;
  transition: ease 0.25s;
  margin-bottom: 20px;
}
body form.loginput input:focus {
  box-shadow: 6px 7px 0 #3dff5d;
  max-width: 200px;
  padding: 1rem;
}
body form.loginput button {
  background-color: #3dff5d;
  box-shadow: 0 2px 0 #1f1f20;
  outline: none;
  padding: 0;
  align-self: center;
  margin-top: 20px;
  border: none;
  transform: rotate(5deg);
  transform-origin: center;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 3px;
  border-radius: 5px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body form.loginput button:active {
  transform: translateY(5px);
  padding-bottom: 0px;
  outline: 0;
}
body form.loginput button span {
  background: rgb(255, 252, 235);
  color: rgb(43, 41, 41);
  border: 2px solid rgb(43, 41, 41);
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 16px;
}
body form.loginput button span .bart {
  width: 120px;
}
body form.loginput span.return {
  color: rgb(255, 76, 76);
  text-align: center;
  margin: 15px 0 0 0;
  transform: rotate(-5deg);
}

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