* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

body.login-body {
  background: #0b0e13;
  color: #fff;
  overflow: hidden;
  height: 100vh;
}

/* === BACKGROUND CANVAS === */
#background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, #0b0e13 0%, #020306 100%);
}

/* === LOGIN WRAPPER === */
.login-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: rgba(25, 28, 36, 0.95);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.08);
  text-align: center;
  width: 360px;
  border: 1px solid rgba(0,255,255,0.1);
  backdrop-filter: blur(10px);
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00ffc8;
  margin-bottom: 5px;
}
.site-title span {
  color: #ffffff;
}

.subtitle {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

/* === INPUT FIELD === */
.input-group {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}

.input-group label {
  font-size: 0.85rem;
  color: #bbb;
  display: block;
  margin-bottom: 8px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: 0.3s;
}

.input-group input:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 5px #00ffc8;
}

/* === EYE ICON === */
.password-group i {
  position: absolute;
  right: 12px;
  top: 39px;
  color: #aaa;
  cursor: pointer;
  transition: 0.2s;
}
.password-group i:hover {
  color: #00ffc8;
}

/* === BUTTON === */
.login-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #00ffc8, #007bff);
  color: #0b0e13;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* === FOOTER === */
.footer-text {
  margin-top: 30px;
  font-size: 0.8rem;
  color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .login-card {
    width: 90%;
    padding: 40px 25px;
  }
}
