* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
}

.login-bg {
  width: 100%;
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/hospital.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 50px;
}

/* LEFT CONTENT */
.login-left-content {
  max-width: 600px;
  color: #fff;
}

.login-left-content h1 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 15px;
}

.login-left-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.login-left-content ul {
  list-style: none;
}

.login-left-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* RIGHT LOGIN CARD */
.login-card {
  width: 380px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  margin-left: auto;
}

.login-card h2 {
  margin-bottom: 10px;
  font-weight: 600;
}

.login-card p {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #004aad;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.login-btn:hover {
  background: #003080;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .login-bg {
    justify-content: center;
  }

  .login-left-content {
    display: none;
  }

  .login-card {
    margin-left: 0;
    width: 100%;
    max-width: 400px;
  }
}

.erp-title {
  display: inline-block;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 30px !important;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(6px);

  /* Premium shadow */
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);

  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.erp-features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.erp-features li {
  position: relative;
  padding: 14px 18px 14px 48px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.erp-features li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00c6ff;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-features li span {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}
