/* Body */
body {
  background: radial-gradient(circle at top left, #0b1430 0%, #041018 55%, #000000 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Login Hero */
.login-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* Background Grid */
.login-hero::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* Glow Blobs */
.login-hero::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 10% 60%, rgba(22, 162, 231, 0.13) 0%, transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(30, 200, 255, 0.09) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Left Panel */
.login-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  background: rgba(255, 255, 255, 0.015);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Left Panel Background Image */
.login-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/newsite/images/Login_page_img/loginimg1.jpg") center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.login-left > * { position: relative; z-index: 1; }

/* Badge */
.login-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1.1rem;
  background: rgba(22, 162, 231, 0.12);
  border: 1px solid rgba(22, 162, 231, 0.28);
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  width: fit-content;
}

.login-badge i { color: #1ec8ff; font-size: 0.7rem; }

/* Heading */
.login-heading {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.login-heading span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.login-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.75;
  max-width: 380px;
}

/* Right Panel */
.login-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 64px 80px;
}

/* Login Card */
.login-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 48px 44px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

/* Card Top Accent Line */
.login-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, #16A2E7, transparent);
  border-radius: 0 0 4px 4px;
}

/* Login Icon */
.login-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(22, 162, 231, 0.18);
  border: 1px solid rgba(30, 200, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-icon i { color: #1ec8ff; font-size: 1.3rem; }

/* Card Title */
.login-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

/* Form Group */
.form-group { margin-bottom: 14px; }

/* Input Wrapper */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap > i {
  position: absolute;
  left: 15px;
  color: rgba(30, 200, 255, 0.65);
  font-size: 0.88rem;
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Input */
.input-wrap input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.93rem;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-wrap input::placeholder { color: rgba(255, 255, 255, 0.35); }

.input-wrap input:focus {
  border-color: rgba(30, 200, 255, 0.55);
  background: rgba(30, 200, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(30, 200, 255, 0.10);
}

.input-wrap:focus-within > i { color: #1ec8ff; }

/* Password Toggle */
.pwd-toggle {
  position: absolute;
  right: 13px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.40);
  cursor: pointer;
  padding: 4px;
  font-size: 0.88rem;
  transition: color 0.3s ease;
  z-index: 1;
}

.pwd-toggle:hover { color: #1ec8ff; }

/* Forgot Password */
.forgot-wrap {
  text-align: right;
  margin: -4px 0 20px;
}

.forgot-wrap a {
  font-size: 0.82rem;
  color: rgba(30, 200, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.forgot-wrap a:hover { color: #4fd6ff; text-decoration: underline; }

/* Login Button */
.btn-login {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #0e8bc7 100%);
  border: none;
  border-radius: 12px;
  color: #041018;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-login:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(30, 200, 255, 0.40); }
.btn-login:active { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(30, 200, 255, 0.28); }



/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
}

.divider span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.40);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Social Login */
.social-login { display: flex; gap: 12px; justify-content: center; }

.social-btn {
  flex: 1;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(30, 200, 255, 0.10);
  border-color: rgba(30, 200, 255, 0.30);
  color: #1ec8ff;
  transform: translateY(-2px);
}

.social-btn.google:hover   { color: #5fea35; border-color: rgba(86, 234, 53, 0.35);  background: rgba(113, 234, 53, 0.07); }
.social-btn.facebook:hover { color: #1877f2; border-color: rgba(24, 119, 242, 0.35); background: rgba(24, 119, 242, 0.07); }
.social-btn.apple:hover    { color: #ffffff; border-color: rgba(255, 255, 255, 0.35); background: rgba(255, 255, 255, 0.07); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }

/* 900px */
@media (max-width: 900px) {
  .login-hero { grid-template-columns: 1fr; }
  .login-left {
    padding: 130px 40px 60px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    align-items: center;
  }
  .login-heading { font-size: 3rem; }
  .login-desc { max-width: 100%; }
  .login-right { padding: 60px 32px 80px; }
}

/* 576px */
@media (max-width: 576px) {
  .login-left { padding: 110px 24px 50px; }
  .login-heading { font-size: 2.4rem; }
  .login-right { padding: 48px 20px 70px; }
  .login-card { padding: 34px 24px; border-radius: 20px; }
  .login-title { font-size: 1.45rem; }
}

/* 375px */
@media (max-width: 375px) {
  .login-heading { font-size: 2rem; }
  .login-card { padding: 28px 18px; }
}