.instruction-panel {
  background: linear-gradient(145deg,
      #00a8ff,
      #006bb3);
  /* Professional blue gradient */
  color: #fff;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.instruction-panel h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.instruction-panel p {
  font-size: 15px;
  margin-bottom: 15px;
}

.instruction-panel ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.instruction-panel ul li {
  margin-bottom: 10px;
  font-size: 14px;
  list-style-type: disc;
}

.instruction-panel ul li b {
  color: #ffdd00;
  /* Highlighted keywords */
}

.instruction-panel .highlight {
  font-weight: 600;
  color: #ffe066;
}

/* Responsive */
@media (max-width: 992px) {
  .instruction-panel {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.login-form {
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  border-top: 3px solid #091057;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.login-form .login-img {
  display: block;
  text-align: center;
}

.login-form .login-img p {
  font-size: 16px;
  font-weight: 700;
  color: #1f4cff;
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(31, 76, 255, 0.15);
  font-family: "Segoe UI", sans-serif;
}

.erp-input {
  position: relative;
}

.erp-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #1f4cff;
  font-size: 18px;
}

.erp-input select,
.erp-input input {
  padding-left: 45px;
  height: 43px;
  border-radius: 50px;
  border: 2px solid #e6ebff;
  transition: all 0.3s ease;
  font-size: 15px;
  background-color: #fff;
}

.erp-input select:focus,
.erp-input input:focus {
  border-color: #1f4cff;
  box-shadow: 0 0 0 4px rgba(31, 76, 255, 0.15);
  outline: none;
}

.erp-btn {
  background: #1f4cff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 12px rgba(31, 76, 255, 0.25);
  transition: all 0.3s ease;
}

.erp-btn:hover {
  background: #0e38c6;
  box-shadow: 0 6px 18px rgba(31, 76, 255, 0.35);
  transform: translateY(-2px);
}

.erp-btn i {
  margin-right: 8px;
}

.top-login {
  height: 100px;
  background-color: #fff;
  text-align: center;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  border-bottom: 2px solid #ccc;
  z-index: 9999;
}

.erp-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff;
  color: #1f4cff;
  border: 1px solid #e6ebff;
  box-shadow: 0 4px 12px rgba(31, 76, 255, 0.08);
  margin-bottom: 16px;
}

.erp-badge i {
  font-size: 16px;
}

.erp-title {
  font-weight: 800;
  font-size: clamp(15px, 2vw, 20px);
  margin: 0 0 12px;
  color: #0f172a;
  padding-top: 10px;
}

.erp-title span {
  color: #1f4cff;
}

/* ==========================
   Mobile App Login Only
========================== */
@media (max-width: 768px) {
  .login-mobile-app .instruction-panel {
    display: none;
  }
  .login-mobile-app .top-login {
    position: static;
    height: auto;
    background: transparent;
    border: none;
    margin-bottom: 20px;
  }
  .login-mobile-app .erp-title {
    color: #fff;
    text-align: center;
    font-size: 22px;
  }

  .login-mobile-app .erp-title span {
    color: #fff;
  }

  .login-mobile-app .erp-badge {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: none;
    backdrop-filter: blur(12px);
  }
  /* .login-mobile-app .row {
    justify-content: center;
  }
  .login-mobile-app .col-lg-3,
  .login-mobile-app .col-md-8,
  .login-mobile-app .col-sm-12 {
    width: 100%;
    max-width: 420px;
  } */
  /* Login Card */
  .login-mobile-app .login-form {
    border: none;
    border-radius: 28px;
    padding: 25px !important;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .20);
  }
  .login-mobile-app .login-img img {
    width: 75px;
    height: 75px;
  }
  .login-mobile-app .erp-input {
    margin-top: 15px !important;
  }
  .login-mobile-app .erp-input input,
  .login-mobile-app .erp-input select {
    height: 54px;
    border-radius: 16px;
    font-size: 16px;
  }
  .login-mobile-app .erp-btn {
    height: 54px;
    border-radius: 16px;
    font-size: 17px;
  }
}