.login {
  height: 100dvh;
  width: 100dvw;
  background-image: url("/img/laboratory-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
}

.login-container {
  background-color: #fff;
  opacity: 0.9;
  padding: 30px;
  width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.login-client-detail-container {
  display: flex;
  flex-direction: column;
}

.login-client-logo {
  height: 150px;
  margin-bottom: 10px;
}

.login-client-title {
  font-size: 24px;
  color: #024a8e;
  font-weight: 600;
}

.login-client-detail {
  font-size: 18px;
  color: #555;
  font-weight: 300;
}

.login-form-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.error-message-container {
  background-color: #dd4b39;
  color: white;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
}

.error-message-close-container {
  color: white;
  font: 600;
  font-size: 20px;
  position: absolute;
  right: 10px;
  top: 1px;
  cursor: pointer;
}

.login-form-title {
  font-weight: 600;
  font-size: 25px;
  color: #035d95;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.login-form-input {
  padding: 6px 12px;
  width: 100%;
  border: 1px solid #6ba3c8;
  background-color: white;
  border-radius: 0px;
  outline: none;
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 1.42857;
  height: 43px;
  margin-bottom: 15px;
}

.login-form-input:focus {
  border: 1px solid #035d95;
}

.login-form-button {
  padding: 10px 25px;
  font-weight: 600;
  width: 100%;
  background-color: #5995bb;
  color: white;
  text-transform: uppercase;
  border: 0px;
  line-height: 1.44;
}

.login-form-button.login-form-button-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.login-form-button.login-form-button-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 100%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin: auto;
}

.login-form-finger-print-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.login-form-finger-print-loading::after {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 4px solid #035d95;
    border-radius: 100%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin: auto;
}

.login-finger-print-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-finger-print-img-container img {
  width: 150px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  opacity: 0.98;
  z-index: 10000;
}

#pre_status {
  width: 200px;
  height: 200px;
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url("/logo_img/doublering.gif");
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

.login-copyright-logo {
  margin-top: 20px;
}
