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

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  width: 420px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Background Slider */
.bg-slider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  width: 120px;
}

h3 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

.user-type {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.user-type label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #444;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
  outline: none;
  font-size: 14px;
}

.password-box {
  position: relative;
}

.password-box span {
  position: absolute;
  right: 12px;
  top: 65%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 25px;
  color: #333;
  user-select: none;
}

.captcha-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-box input {
  flex: 1;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 0px;
  outline: none;
  font-size: 14px;
}

.refresh-btn {
  background: #0ea293;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.sign-btn {
  width: 100%;
  background: #0e5aa2;
  padding: 14px;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.sign-btn:hover {
  background: #003e78a2;
  border-color: solid 2px aliceblue;
}

.forgot {
  text-align: right;
  margin-top: 10px;
}

.forgot a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

@media (max-width: 480px) {
  .login-card {
    width: 90%;
  }
}
