html,
body {
  overflow: hidden;
}

body {
  height: 100vh;
  background: #fff;
  font-family: "Outfit", sans-serif;
}

.bg-login {
  display: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: url("../img/gambar/bg.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  opacity: 0.7;
  z-index: 0;
}
.content {
  position: fixed;
  top: 50%;
  width: 300px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.login-card {
  margin-top: 40px;
  padding: 20px 25px 20px 25px;
  border-radius: 2px;

  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 35px -11px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 35px -11px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 35px -11px rgba(0, 0, 0, 0.4);
  display: block;
  opacity: 1;
}

.sembunyi {
  display: none;
  opacity: 0;
}

.header-login {
  background: #fff;
  border-radius: 50%;
  height: 110px;
  width: 110px;
  margin: 0 auto;
  /* margin-top: -70px; */
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.header-login img {
  padding: 10px;
  width: 110px;
  text-align: center;
  height: 110px;
  margin: 0 auto;
}
.header-login h1 {
  font-size: 0.8rem;
  text-align: center;
}

.header-login h2 {
  font-size: 0.8rem;
  text-align: center;
}
.form-control:focus {
  box-shadow: none;
  border-color: #6c9dd5;
}

.footer {
  color: #5c5c5c;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  font-weight: 400;
  margin-top: 20px;
  font-size: 0.8rem;
}

.swal2-title {
  font-size: 1rem !important;
}

.swal2-html-container {
  font-size: 0.9rem !important;
  font-weight: 200;
}

.swal2-actions .swal2-styled {
  padding: 5px 10px !important;
  font-size: 0.9rem !important;
  box-shadow: none !important;
  border: none !important;
}

.swal2-icon {
  border: none !important;
}

.swal2-actions {
  margin-bottom: 20px;
}

.swal2-modal {
  border-radius: 15px;
}

.form-control {
  border-radius: 0px;
}

.form-label {
  margin: 0px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #565656;
  text-transform: uppercase;
}

.btn {
  border-radius: 0px;
}

.form-check {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-check-input {
  margin: 0px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--color-danger);
  box-shadow: none;
  border: solid 1px var(--color-danger);
}

.form-check-input:not(:checked) {
  box-shadow: none;
  border: solid 2px var(--color-primary);
  background-color: transparent;
}

.form-check-input:active {
  color: #365d9b;
  background-color: var(--color-danger);
  box-shadow: none;
}

.form-check-label {
  margin: 0px;
  user-select: none;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #565656;
  text-transform: uppercase;
  cursor: pointer;
}

.loading {
  position: fixed;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.29);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}

.btn-login {
  background-color: #6621fa; /* Warna tombol */
  color: #fff; /* Warna teks */
  padding: 8px 12px; /* Padding untuk ukuran tombol */
  border: none; /* Menghilangkan border */
  font-size: 12px; /* Ukuran font */
  cursor: pointer; /* Pointer saat hover */
  transition: background-color 0.3s ease; /* Animasi transisi */
}

.btn-login:hover {
  background-color: #7f43ff; /* Warna tombol saat hover */
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.isi-loading {
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader1 {
  border: 8px solid #2c43d8;
  border-radius: 50%;
  border-top: 8px solid #150fc2;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 8px rgba(70, 44, 216, 0.3);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.btn {
  box-shadow: none !important;
}

.header-content {
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 0px;
  background-color: var(--warna);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.company-name {
  width: 100%;
  padding: 0px 25px;
  height: 50px;
  display: flex;
  align-items: center;
}

.company-name h1 {
  margin: 0px;
  padding: 0px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
  text-align: right;
  width: 100%;
}

.company-name img {
  margin-left: 10px;
}

.company-name-home {
  width: 100%;
  padding: 0px 25px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-name-home h1 {
  margin: 0px;
  padding: 0px;
  font-size: 1.07rem;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 10px 0px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.company-name-home img {
  margin-left: -10px;
  width: 62px;
  padding: 12px;
  background: var(--warna-border-top);
}

.title-page {
  background-color: var(--warna-border-top);
  height: 5px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}

.nama-dinas {
  width: 100%;
}
.nama-dinas h1 {
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
  letter-spacing: 3.5px;
  margin-top: 0px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.nama-dinas h2 {
  margin: 0px;
  padding: 0px;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-login {
  margin-bottom: 20px;
}

.title-login h1 {
  font-size: 1rem;
  font-weight: bold;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}

.btn-lupa-password {
  text-decoration: none;
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 10px;
  margin-bottom: -15px;
  color: #7d7d7d;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 20px;
  padding: 5px;
}
.btn-lupa-password:hover {
  color: var(--color-danger);
}
