.body-login {
  background: linear-gradient(-135deg, var(--BlueOriginal) 50%, #ffffff 50%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: repeat-x;
}

/* .card-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 23%;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 50px;
} */

.card-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 37.6%;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 50px;
  width: 100%;
  max-width: 500px;
}


.bg-card {
  width: 700px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  left: -359px;
  top: -45px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.bg-card .logo {
  filter: none;
  width: 300px;
}

.bg-card .overlay-logo {
  position: absolute;
  top: 46%;
  left: 27%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 5px;
}

.login-card {
  width: 400px;
  background: var(--BlueOriginal);
  padding: 50px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.login-card h5 {
  margin-bottom: 20px;
}

.login-card .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  color: white;
  padding-left: 0rem;
}

.login-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.login-card input:-webkit-autofill,
.login-card input:-webkit-autofill:hover,
.login-card input:-webkit-autofill:focus,
.login-card input:-webkit-autofill:active {  
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px #2A65EF inset;
  transition: background-color 5000s ease-in-out 0s;
}

.btn-custom {
  background: white;
  color: var(--BlueOriginal);
  border-radius: 30px;
  font-weight: bold;
  padding: 10px 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #eaeaea;
  color: var(--BlueOriginal);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.form-check-label {
  font-size: 13px;
}

.extra-links {
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
}

.extra-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* START AOH */
#chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
#chatbot .btn {
  padding: 25px;
  border-radius: 15px;
  background: var(--BlueDark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
#chatbot .btn .fe {
  font-size: 30px;
}
#modalchatbot .modal-fullscreen .modal-footer {
    background: #f6f5ff !important;
}
#modalchatbot .modal-fullscreen .modal-footer .form-control {
    height: 55px;
}
#modalchatbot .modal-fullscreen .modal-footer .btn-icon {
    width: 70px !important;
    height: 55px !important;
}
#modalchatbot .modal-fullscreen .modal-footer .btn-icon i {
  font-size: 1.5rem;
}
/* END AOH */


@media only screen and (max-width: 600px) {
  .bg-card {
    display: none;
  }
  .card-container {
    margin-left: 16%;
    margin-top: 40%;
  }
}
