html,
body {
  overflow: hidden;
  font-family: "Roboto Condensed", sans-serif;
}
body {
  height: 100vh;
  background: #fff;
}
.bg-login {
  display: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: url("../img/bg.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  opacity: 0.8;
  z-index: 0;
}
.login-card {
  padding: 0px 25px 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 50%;
  width: 300px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
}
.header-login {
  margin-top: 30px;
  margin-bottom: 30px;
}
.header-login img {
  text-align: center;

  height: 130px;
  margin: 0 auto;
}

.form-control:focus {
  box-shadow: none;
  border-color: #d82c30;
}

.footer {
  color: #9c9c9c;
  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;
  text-transform: uppercase;
  color: #515151;
  font-weight: 500;
  letter-spacing: 1px;
}
.btn {
  border-radius: 0px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-check-input {
  margin: 0px;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: #d82c30;
  box-shadow: none;
  border: solid 1px #d82c30;
}

.form-check-input:not(:checked) {
  box-shadow: none;
  border: solid 1px #d82c30;
}

.form-check-input:active {
  color: #365d9b;
  background-color: #d82c30;
  box-shadow: none;
}
.form-check-label {
  font-size: 0.8rem;
  margin: 0px;
}

.loading {
  position: fixed;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.29);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
@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 #d82c30;
  border-radius: 50%;
  border-top: 8px solid #9f2123;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 8px rgba(216, 44, 48, 0.3);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn {
  box-shadow: none !important;
}
