  /* Global Reset & Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background: #f8fafc;
      color: #1e293b;
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
       background: linear-gradient(to right, #0b2c44, #124e78);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    header .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    header .logo img {
      height: 40px;
    }
    header .logo h1 {
      font-size: 18px;
      color: #fff;
      font-weight: 600;
    }
    header nav a {
      color: #fff;
      margin-left: 20px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: color 0.3s;
      text-decoration: none;
    }
    header nav a:hover {
      color: #f87171; /* Soft red accent */
    }
    
    /* Main Layout */
    .container {
      display: flex;
      margin-top: 70px; /* Reserve space for the header */
      min-height: calc(100vh - 70px);
    }
    
    /* Left Column: Features & Content */
    .left-column {
      flex: 1;
      padding: 40px;
      overflow-y: auto;
      background: #f8fafc;
    }
    .left-column h1 {
      font-size: 28px;
      margin-bottom: 15px;
      color: #1e293b;
      font-weight: 600;
    }
    .left-column p {
      font-size: 15px;
      line-height: 1.6;
      max-width: 700px;
      margin-bottom: 30px;
    }
    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      max-width: 900px;
    }
    .feature-box {
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .feature-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    }
    .feature-box h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #0f172a;
      font-weight: 600;
    }
    .feature-box p {
      font-size: 14px;
      color: #475569;
      line-height: 1.4;
    }
    
    /* Right Column: Subtle BG & Centered Login Card */
    .right-column {
      width: 420px;
      background: #f1f5f9; /* Slightly darker than main BG */
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: -2px 0 8px rgba(0,0,0,0.1);
      padding: 40px 20px;
    }
    .login-card {
      width: 100%;
      max-width: 340px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      padding: 30px;
      position: relative;
    }
    /* Decorative top border / accent bar */
    .login-card::before {
      content: "";
      display: block;
      width: 50px;
      height: 4px;
      background: #0f172a;
      border-radius: 2px;
      margin: 0 auto 15px;
    }
    .login-card h2 {
      font-size: 18px;
      margin-bottom: 15px;
      text-align: center;
      color: #0f172a;
      font-weight: 600;
    }
    .login-card label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      font-weight: 500;
      color: #475569;
    }
	
    .login-card input {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #cbd5e1;
      border-radius: 4px;
      font-size: 14px;
    }
	
	
    .login-card button {
      width: 100%;
      padding: 10px;
     background: linear-gradient(to right, #0b2c44, #124e78);
      color: #fff;
      border: none;
      border-radius: 4px;
      font-size: 15px;
      cursor: pointer;
      transition: background 0.3s;
      margin-top: 5px;
    }
    .login-card button:hover {
      background: linear-gradient(to right, #0b2c44, #124e78);
    }
    .login-card .error {
      color: #dc2626;
      text-align: center;
      margin-bottom: 10px;
      font-size: 14px;
    }
    .login-card .card-footer {
      text-align: center;
      font-size: 12px;
      color: #777;
      margin-top: 10px;
    }
    
    /* Footer */
    footer {
      background: #102a43;
      color: #fff;
      text-align: center;
      padding: 15px;
      font-size: 14px;
    }
    
    /* Responsive */
    @media(max-width: 900px) {
      .container {
        flex-direction: column;
        min-height: auto;
      }
      .right-column {
        width: 100%;
        box-shadow: none;
        border-top: 1px solid #e2e8f0;
      }
      .left-column, .right-column {
        padding: 20px;
      }
    }