html,
body {
  height: 100%;
  font-family: "Be Vietnam Pro", sans-serif;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 32px;
  position: relative;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0.5;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw + 2px);
  height: 100vh;
  z-index: -1;
  background-image: url("../img/bg-login.jpg");
  background-size: cover;
  background-position: center;
}
body.loading::before {
  background-image: url("../img/bg-Loading-Screen.jpg");
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  /* Hidden by default */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.loading-screen .logo {
  margin-bottom: 4rem;
}
.loading-screen .logo img {
  max-width: 268px;
}

.copyright {
  position: fixed;
  bottom: 32px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #666666;
}
.copyright p {
  font-weight: lighter;
  font-size: 14px;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright a {
  color: #000;
  text-decoration: none;
}

.login-container {
  background-size: cover;
  background-position: center;
  width: 100%;
}
.login-container.hide {
  transition: all 600ms;
  width: 0;
  height: 0;
  opacity: 0;
}
.login-container.show {
  transition: all 600ms;
  width: auto;
  height: auto;
  opacity: 1;
}
.login-container h1 {
  font-size: 38px;
  font-weight: bold;
  line-height: 40px;
}
.login-container .des {
  color: #666666;
}
.login-container .form-signin {
  width: 100%;
  padding: 1rem 0rem;
  margin: auto;
  border-radius: 32px;
}
.login-container .form-signin .form-control {
  color: #222;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid #000;
  padding-left: 0;
  border-radius: 0;
}
.login-container .form-signin .form-control:focus {
  border-color: #000;
  box-shadow: none;
}
.login-container .form-signin .form-label {
  color: #666666;
  margin-bottom: 0;
}
.login-container .form-signin .checkbox {
  font-weight: 400;
}
.login-container .form-signin input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.login-container .form-signin input[type=password] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.login-container .form-signin .form-check-label {
  color: #666666;
  font-size: 15px;
  text-decoration: none;
}
.login-container .form-signin .form-check-input:checked {
  background-color: #FFC940;
  border-color: #FFC940;
}
.login-container .form-signin .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.login-container .btn-signin {
  font-weight: bold;
  border-radius: 0.75rem;
  background: linear-gradient(to right, #FFDB00, #F8ED16);
}/*# sourceMappingURL=signin.css.map */