@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.login {
  height: 100vh;
  background: linear-gradient(
    46deg,
    rgba(33, 33, 33, 0.84) 0%,
    rgba(66, 66, 66, 0.24) 178.98%
  );
}
.login .content {
  color: #fff;
}
.login .card {
  border-radius: 24px 24px 0px 0px;
  background: #fafafa;
}
.login .card .card-body {
  padding: 60px 25px 150px 25px;
}
.login .card .card-body h1 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 30px;
}
.login .card .card-body h6 {
  font-weight: 400;
}
.login .card form a {
  color: #424242;
}
.login .card form {
  position: relative;
}
.login .card form .fields {
  position: relative;
  margin-bottom: 30px;
}
.login .card form .fields label {
  display: inline;
  background: #fafafa;
  position: absolute;
  top: -15px;
  left: 18px;
  padding: 3px 10px;
}
.login .card form .form-control {
  height: 50px;
  color: #424242;
  border-color: rgba(189, 189, 189, 1);
}
.login .card form .form-control:focus {
  background: #fafafa !important;
  border-color: #dee2e6;
  box-shadow: 0 0 0 0.25rem rgba(250, 250, 250, 0.25);
}
.login .card form .btn-dark {
  background: #212121;
  border-color: #212121;
  padding: 10px 10px;
  font-size: 18px;
  font-weight: 600;
}
.form-check-input:checked {
  background-color: #9e9e9e;
  border-color: #9e9e9e;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(158, 158, 158, 0.25);
}
input:-internal-autofill-selected {
  background: #fafafa !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fafafa inset !important;
}
@media only screen and (max-width: 768px) {
  .login {
    height: unset;
    padding-top: 20px;
  }
  .login .card .card-body {
    padding: 60px 25px 60px 25px;
  }
}
