@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
::-webkit-scrollbar-button {
  width: 6px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgb(39.0728476821, 40.3973509934, 60.9271523179);
}

::-webkit-resizer {
  width: 4px;
  height: 0px;
}

::-webkit-scrollbar {
  width: 4px;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
}

.flex1 {
  flex: 1;
}

body {
  width: 100%;
  min-height: 100vh;
}

.auth {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background-color: #3B3D5C;
}
.auth > form {
  padding: 20px;
  width: 260px;
}
.auth > form > p {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #454866;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  margin-bottom: 10px;
  padding: 0px 10px;
  transition: 0.3s;
}
.auth > form > p > i {
  font-style: normal;
}
.auth > form > p > i::after {
  font-family: "icomoon" !important;
  width: 18px;
  height: 18px;
  display: block;
  color: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.auth > form > p:has(input:focus) {
  border-color: #fff;
}
.auth > form > p:has(input:focus) > i::after {
  color: #fff;
}
.auth > form input {
  display: block;
  border: none;
  outline: none;
  background: none;
  flex: 1;
  padding: 16px 16px 16px 8px;
  box-sizing: border-box;
  color: #fff;
}
.auth > form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.1);
}
.auth > form input::placeholder {
  color: rgba(255, 255, 255, 0.1);
}
.auth > form > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auth > form > div button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  outline: none;
  padding: 16px 32px;
  color: #3B3D5C;
  border-radius: 32px;
  margin-left: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
}
.auth > form > div button:hover {
  background-color: #fff;
}
.auth > form > div button.reset {
  background: none;
  color: rgba(255, 255, 255, 0.3);
  padding: 0px;
  margin-left: 0px;
  border-radius: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.auth > form > div button.reset:hover {
  color: #F2714F;
  border-color: #F2714F;
}
.auth .row-mail i::after {
  content: "\e900";
}
.auth .row-pass i::after {
  content: "\e91e";
}/*# sourceMappingURL=auth.css.map */