
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      min-height: 100vh;
      background: linear-gradient(135deg, #eef2f7, #d9e4f5);
      display: flex;
      flex-direction: column;
    }

    /* Header / Banner */
    header {
      width: 100%;
      background: #0f1e3a;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .header-banner {
      width: 100%;
      max-width: 900px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .header-banner img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    header h1 {
      font-size: 2.2rem;
      letter-spacing: 1px;
    }

    header p {
      margin-top: 8px;
      font-size: 1rem;
      opacity: 0.9;
      text-align: center;
    }

    .banner-content {
      text-align: center;
    }

    /* Main container */
    main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    /* Login card */
    .login-card {
      width: 100%;
      max-width: 380px;
      background: #ffffff;
      padding: 32px 28px;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .login-card h2 {
      text-align: center;
      margin-bottom: 24px;
      color: #1e3c72;
    }

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

    .form-group label {
      display: block;
      font-size: 0.9rem;
      margin-bottom: 6px;
      color: #333;
    }

    .form-group input {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 0.95rem;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus {
      outline: none;
      border-color: #2a5298;
      box-shadow: 0 0 0 3px rgba(42, 82, 152, 0.15);
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    }

    .login-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
      opacity: 0.95;
    }

    .extra-links {
      margin-top: 18px;
      text-align: center;
      font-size: 0.85rem;
    }

    .extra-links a {
      color: #2a5298;
      text-decoration: none;
      margin: 0 6px;
    }

    .extra-links a:hover {
      text-decoration: underline;
    }

    /* Footer (optional) */
    footer {
      text-align: center;
      padding: 12px;
      font-size: 0.8rem;
      color: #666;
    }
  /* ======= Header Bar ======= */
.main-landing-page__header-bar {
    background-color: hsl(218, 59%, 17%); /* deep blue for official look */
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ======= Header Content ======= */
.main-landing-page__header-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* ======= Logo Section ======= */
.main-landing-page__logo {
    display: flex;
    align-items: center;
}

/* Logo Icon */
.main-landing-page__logo-icon img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 15px;
    border: 2px solid white;
    background-color: white; /* in case transparent logo */
    padding: 5px;
}

/* Logo Text */
.main-landing-page__logo-text {
    display: flex;
    flex-direction: column;
}

/* Title */
.main-landing-page__logo-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

/* Subtitle */
.main-landing-page__logo-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #e0e0e0;
    margin-top: 2px;
}
