@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
@font-face {
  font-family: "Atyp";
  src: url("../../static/fonts/Atyp/AtypDisplay-Regular.ttf") format("truetype"), url("../../static/fonts/Atyp/AtypDisplay-Regular.woff2") format("woff2"), url("../../static/fonts/Atyp/AtypDisplay-Regular.woff") format("woff"), url("../../static/fonts/Atyp/AtypDisplay-Regular.eot") format("eot");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Atyp", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.auth {
  background-image: url("../../static/images-v2/login-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.auth .auth-form {
  background: rgba(25, 25, 25, 0.8117647059);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px 69px;
  width: 700px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.auth .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth .logo img {
  width: 450px;
  height: 110px;
}
.auth .next {
  display: flex;
  justify-content: center;
}
.auth .auth-form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: #03FCEB;
  border: 1px solid #03FCEB;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 300px;
  font-family: "Atyp", sans-serif;
}
.auth .auth-form-btn:hover, .auth .auth-form-btn:focus, .auth .auth-form-btn:active {
  background-color: #5bb3b5;
  color: #fff;
  border: 1px solid #5bb3b5;
}
.auth form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.auth .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.auth .form-group label {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.auth .form-group input {
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.1294117647) !important;
  color: #9B9B9D !important;
}
.auth .form-group input::placeholder {
  color: #9B9B9D;
  font-size: 14px;
}
.auth .form-group input:-webkit-autofill, .auth .form-group input:-webkit-autofill:hover, .auth .form-group input:-webkit-autofill:focus, .auth .form-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.0666666667) inset !important;
  -webkit-text-fill-color: #b5b5b5 !important;
  transition: background-color 5000s ease-in-out 0s;
}
.auth .form-group input:focus {
  border-color: #77d1d6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(119, 209, 214, 0.2);
}
.auth .error-non-field {
  color: #dd6060;
}
.auth .password img {
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 18px;
}
.footer a {
  color: #03FCEB;
  text-decoration: none;
  font-size: 18px;
}
.footer a:hover {
  color: #5bb3b5;
}

@media screen and (max-width: 768px) {
  .auth .auth-form {
    padding: 16px 32px;
    margin: 0 12px;
  }
  .auth .logo img {
    width: 150px;
    height: 40px;
  }
  .auth .footer {
    font-size: 14px;
  }
  .auth .footer a {
    font-size: 16px;
  }
  .auth .auth-form-btn {
    width: 100%;
  }
}