@font-face {
  font-family: "custom-bold";
  src: url("./fonts/Circular/CircularStd-Black.otf");
}
@font-face {
  font-family: "custom-light";
  src: url("./fonts/Circular/CircularStd-Light.otf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "custom-bold", sans-serif;
  font-size: 16px;
  width: 100vw;
}
body header {
  width: 100%;
  padding: 20px;
  justify-content: center;
  border-bottom: 1px solid lightgray;
  display: flex;
  gap: 5px;
  align-items: center;
}
body header * {
  display: inline;
}
body header i {
  font-size: 2.7rem;
}
body header p {
  font-size: 1.7rem;
}
body main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  padding-top: 40px;
}
body main > p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
body main .login {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 30px;
  padding: 10px;
  max-width: 450px;
  margin: 5px;
  height: 48px;
}
body main .login p {
  font-size: 0.9rem;
}
body main .login i {
  font-size: 1.5rem;
}
body main .login img {
  height: 1.5rem;
}
body main .login:hover {
  border-color: black;
}
body main .login:active::after {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 40px;
  background: transparent;
  border: 2px solid black;
  position: absolute;
  left: -7px;
  top: -7px;
  content: "";
}
body main .fb, body main .apple {
  color: white;
}
body main .fb {
  background: rgb(24, 119, 242);
}
body main .apple {
  background: rgba(0, 0, 0, 0.9);
}
body main .google {
  color: gray;
}
body main .partitioner {
  width: 100%;
  max-width: 450px;
  display: grid;
  gap: 10px;
  margin-top: 15px;
  grid-template-columns: 1fr 30px 1fr;
  text-align: center;
}
body main .partitioner .side {
  border-top: 2px solid lightgray;
}
body main .partitioner .or {
  font-size: 0.8rem;
}
body main .do--not {
  font-size: 1.2rem;
  font-family: "custom-bold";
  margin-top: 10px;
}
body main form {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
body main form > label {
  font-size: 0.8rem;
  margin-bottom: 10px;
}
body main form input {
  padding: 15px 10px;
  margin-bottom: 15px;
  border: 1px solid gray;
  border-radius: 3px;
  transition: 0.2s ease;
}
body main form input:hover {
  border-color: black;
}
body main form input::-moz-placeholder {
  font-size: 0.9rem;
  color: rgb(80, 78, 78);
}
body main form input, body main form .control label, body main form input::placeholder {
  font-size: 0.9rem;
  color: rgb(80, 78, 78);
}
body main form a, body main form .control label {
  font-family: "custom-light", sans-serif;
  color: black;
}
body main form a {
  margin-bottom: 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid transparent;
}
body main form a:hover {
  color: green;
}
body main form a:active {
  border-bottom: 2px solid green;
  text-decoration: none;
}
body main form input[type=checkbox] {
  position: relative;
  accent-color: #1ed760;
  height: 1rem;
  width: 1rem;
  margin-bottom: 0;
}
body main form input[type=checkbox]:focus::after {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 5px;
  background: transparent;
  border: 2px solid black;
  position: absolute;
  left: -0.35rem;
  top: -0.35rem;
  content: "";
}
body main form hr {
  color: lightgray;
  margin: 20px 0;
}
body main form .control {
  display: flex;
  align-items: center;
  flex-direction: row;
}
body main form .control button {
  margin-left: auto;
  font-family: "custom-bold", sans-serif;
  padding: 15px 35px;
  border-radius: 30px;
  border: none;
  background-color: #1ed760;
  color: white;
  position: relative;
}
body main form .control button:hover {
  scale: 1.1;
}
body main form .control button:active::after {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 40px;
  background: transparent;
  border: 2px solid black;
  position: absolute;
  left: -7px;
  top: -7px;
  content: "";
}
body main form .control label {
  margin-left: 10px;
}
body main > hr {
  border-top: 1px solid #e9e2e2;
}
body main .signup {
  border: 1px solid rgb(175, 171, 171);
  color: gray;
}
body main .signup:hover {
  border-color: black;
}
body main a {
  min-width: 450px;
  text-decoration: none;
  align-self: center;
}/*# sourceMappingURL=login.css.map */