html,
body {
  overflow: hidden;
  font-size: 13px;
  color: var(--text-color);
  background-color: var(--bg-primary);
  font-family: "Poppins", sans-serif;
}

.page-content {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.page-content .left-page {
  width: 50%;
  height: 100%;
  background-image: url("../img/bg-login.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-page .brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.left-page .brand {
  color: #ffffff;
}

.left-page .brand img {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
}

.left-page .brand h1 {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.left-page .brand p {
  width: 500px;
  padding: 0 20px;
  font-size: 1.3rem;
  font-weight: 300;
  text-align: center;
}

.page-content .right-page {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-page .row-login {
  width: 60%;
  padding: 40px;
  background-color: var(--bg-content);
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.row-login .judul-form {
  text-align: center;
}

.row-login .judul-form h3 {
  font-size: 1.7rem;
  font-weight: 600;
}

.row-login .judul-form p {
  color: #7c8798;
}

.loading {
  position: fixed;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.29);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}

.loading-awal {
  position: fixed;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.29);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.isi-loading {
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader1 {
  border: 8px solid var(--border-color);
  border-radius: 50%;
  border-top: 8px solid var(--primary);
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.181);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
