/*Google font*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}
.webp body {
  position: relative;
  font-family: "Roboto", sans-serif;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-size: 16px;
}
.no-webp body {
  position: relative;
  font-family: "Roboto", sans-serif;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-size: 16px;
}
body::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  box-shadow: inset 0px 0px 100px 95px rgba(0, 0, 0, 0.2);
}

.login-form {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.login-form .box {
  min-width: 45rem;
  min-height: 45rem;
  background-color: inherit; /* rgba(255,255,255,0.06) */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
}
.login-form .box .logo h1 {
  color: #fff;
  font-size: 1.5rem;
}
.login-form .box .heading h2 {
  color: #fff;
  font-size: 2.5rem;
  margin: 0.5rem 0 2rem;
  display: inline-block;
}
.login-form .box .form-fields {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.login-form .box .form-fields .label-box {
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}
.login-form .box .form-fields .input-box {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%;
}
.login-form .box .form-fields .forgot a {
  display: block;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 3rem;
}
.login-form .box .form-fields .input-box .form-control {
  height: 4rem;
  width: 100%;
  padding: 0 0 0 4.5rem;
  color: #444444;
  border: 1px solid #cccccc;
  border-radius: 0.5rem;
  outline: none;
}
.login-form .box .form-fields .input-box .form-control::placeholder {
  color: #cccccc;
}
.login-form .box .form-fields .input-box span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form .box .form-fields .input-box span img {
  width: 2.2rem;
}

.login-form .box .form-fields .button-box button {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 0.8rem 3.5rem;
  background-color: #67c801;
  transition: box-shadow 0.5s ease;
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
}
.login-form .box .form-fields .button-box button:hover {
  box-shadow: 0 0 1rem gray;
}
.login-form .box .social-links {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.login-form .box .social-links p {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  margin: 2rem 0;
}
.login-form .box .social-links .links-box {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
}
.login-form .box .social-links .links-box .box-social {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 0.5rem;
  width: calc(33.3% - 15px);
  transition: box-shadow 0.5s ease;
  -webkit-transition: box-shadow 0.5s ease;
  -moz-transition: box-shadow 0.5s ease;
  -ms-transition: box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  border-radius: 0.5rem;
}
.login-form .box .social-links .links-box a:hover {
  box-shadow: 0 0 1rem gray;
}
.login-form .box .social-links .links-box .box-social img {
  height: 2.2rem;
}
.login-form .box .register {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.login-form .box .register p,
.login-form .box .register a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
}
.login-form .box .register a {
  text-decoration: none;
  margin-left: 0.5rem;
  font-weight: 700;
}
/* footer */
.copyright {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
.copyright p {
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.copyright a {
  border-bottom: 2px solid #003465;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.copyright a:hover {
  background-color: #003465;
}
.copyright img {
  width: 1.5rem;
  height: 1.5rem;
  animation: heart 2s infinite ease;
  -webkit-animation: heart 2s infinite ease;
  margin: 0 0.5rem;
}

@keyframes heart {
  from {
    transform: scale(1);
  }

  10% {
    transform: scale(1.2);
  }
}
/** Responsive **/
@media (max-width: 500px) {
  .login-form .box {
    min-width: 100%;
    padding: 3rem;
  }
  .login-form form {
    min-width: 100%;
  }
}
