* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
}

:root {
  --primary-color: #ea580c;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #f97316;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --orange-color: #f97316;
  --orange-light: #fed7aa;
  --orange-dark: #ea580c;
  
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --border-radius: 8px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}


body {
  background: #f8fafc;
  color: #0f172a;
}

.page {
  display: flex;
}

/* LEFT CONTENT */
.content {
  width: 66%;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/8007397/pexels-photo-8007397.jpeg") center/cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.4rem;
  opacity: 0.95;
}

.badges {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badges span {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
}

/* SECTIONS */
.feature {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature.white {
  background: #fff;
}

.feature.light {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.feature img {
  width: 100%;
  border-radius: 20px;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tag.cyan { background: #cffafe; color: #0e7490; }
.tag.blue { background: #dbeafe; color: #1e40af; }
.tag.orange { background: #ffedd5; color: #9a3412; }

.feature h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 2rem;
}

.feature ul {
  list-style: none;
}

.feature li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature li i {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: #cffafe;
  color: #0891b2;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stats div {
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfeff, #e0f2fe);
}

.stats strong {
  font-size: 2.5rem;
  color: #0369a1;
}

/* CONTACT */
.contact {
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--warning-color), var(--orange-color));
  color: #fff;
}

.contact a {
  margin-top: 1.5rem;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #0369a1;
  font-weight: 600;
  text-decoration: none;
}

/* LOGIN PANEL */
.login-panel {
  width: 34%;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: #fff;
  box-shadow: -20px 0 40px rgba(0,0,0,0.1);
  padding: 3rem;
  display: flex;
  align-items: center;
}

.login-panel form {
  width: 100%;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header i {
  width: 60px;
  height: 60px;
  padding: 12px;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #fff;
  border-radius: 18px;
}

.login-panel label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.login-panel input {
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  margin-top: 0.4rem;
}

.password {
  position: relative;
}

.password button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.remember {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 1.5rem 0;
}

#btnLogin {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--info-color));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* ===========================
   RESPONSIVE – MOBILE / TABLET
   =========================== */

@media (max-width: 1023px) {

  .page {
    flex-direction: column;
  }

  .content {
    width: 100%;
  }

  /* LOGIN PANEL */
  .login-panel {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: none;
    padding: 2rem 1.5rem;
    order: -1;
  }

  .login-panel form {
    max-width: 420px;
    margin: 0 auto;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 70vh;
    padding: 4rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  /* FEATURES */
  .feature {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }

  .feature img {
    height: 280px;
  }

  /* STATS */
  .stats {
    flex-direction: column;
  }

  /* CONTACT */
  .contact {
    padding: 3rem 1.5rem;

  }

}

/* SMALL PHONES */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .feature h2 {
    font-size: 2rem;
  }

  .login-header i {
    width: 48px;
    height: 48px;
  }

}

/* ===========================
   WEB IMAGE HERO SECTION
   =========================== */

.hero {
  position: relative;
  min-height: 75vh;
}

.hero-image {
  background-image: url("/static/images/web_photo1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 120px 40px;
}