:root {
    --blue-dark: #0a3c7b;
    --blue-mid: #0f52a0;
    --text-muted: #c7d7f2;
    --white: #ffffff;
    --accent-light: #9cc7ff;
    --radius: 12px;
  }

  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background:
      linear-gradient(180deg, rgba(10,60,123,0.9), rgba(15,82,160,0.9)),
      url("https://lh3.googleusercontent.com/rd-d/ALs6j_HW9DziyxGurOUXuK3k4AKPD-PeOeFQZlri4r_fmsI1yegwIqNnFXeURy6E11D93k8Qp1DPb5ysqJbXEIFfJeQ8j8SkN-LCMeihz5xfV6xceNVNLBmtxzittFs_qju126Hpk2sEbGT1Rakl9CEBrKIgQgM-JMWe-yi4OcE_g1d0baRwAxGAECgQ3GCijZYPnTqH8t2hO0P_UhQmULjyGkcXp53UXxSKB0FnWveuhnU0MVuIDHXRLiumvn_op-wTkOF5YvSUj1y9hKFxwPh4VzimjshzUs_Da3xNILADLl_Y5_gkRZHdBTwTNWPIAUI-HnzaTy5_jyTPAcfI3ymwYDUPsKGImB7dL1YgZ7XqBZqOaWqjGLqo4ZG5j4uBg-4bKmOM61uOlTcdxC-PsPH6rInASZ04TwzVuieHqBBrsUKQvDdiQerkkRODSz-xxwz_aliC5tPqmDGIKypWa0uJVqqi4LhWOW7cy16FY9DiLU8hBc13qAvkbECEiUGv6sOx8hp419sCwmUGU7lU2F7zd-noZwH3Je6OER9poT43C2iPK6eqq4GgusSSvHQTLKaEKT8ISwrU88oGO7_SY9SW0wlLT49rb4tHz7u_-qBgVKWBjyhEX_iscVx5IABz80JCPSkXRXvjurVfLzjTEH5JpKiBJiZWjKiNFcJoUOUf18d6PBHOkmeAKEnu0fQvVdkYYDUNUQc1sFFt356gfhbMQZj37M7EjZ0TPtUMW3JnSwthaL4Gjn8H4Wq3GaFo0h0-0gnrlwL0KtsuZycZwNE1fMzoZY_xwneA7Aq2VXk4FiDTQg1HNgypq--lKdK5yen7S8xrJ42_ocw7HlCctChLNlkfgjLsj7jEm0G__A7QSh-tRlhfj9gW8wmn2CirrSrDBoXi-CjNCw9G969Tbj021KDSErGzhWcmF3NSt-0jtorZbmsnoryWCZur4ct_-ol58YpKIl4ZI6wwRGV2HwwkI3YUrWr1TyhUeEgolPtb2EkH4qsOfnvDBCdY2qmR63P2atC7T3WcijWOkgjEdVcx8YYM62X_inq6pnHxHQ0If82MD3Jf7wuHUeugjwSNS4ELKcBiCUS62B3LwXSVAa2B-F9nRWZ7CvfGeFhwR3I17Y2MfFNkWdIa3GU=w1920-h911?auditContext=prefetch");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
  }

  /* Hide master header */
header.m-b-30 {
    display: none !important;
}
.auth-layout-wrap {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.auth-content {
    margin: 0 !important;
    max-width: 100% !important;
}

  /* ===== Layout ===== */
  .container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
  }

  /* ===== Left Section ===== */
  .left-panel {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
  }

  .logo-wrapper {
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    display: inline-block;
  }

  .logo-wrapper img {
    width: 180px;
    height: auto;
    display: block;
  }

  .left-heading {
    font-weight: 700;
    line-height: 1.2;
    font-size: 36px;
    margin: 0;
    color: var(--white);
  }

  .left-heading .highlight {
    color: var(--accent-light);
  }

  .left-panel p {
    font-size: 16px;
    max-width: 420px;
    margin-top: 20px;
    color: var(--text-muted);
  }

  /* ===== Login Card ===== */
  .login-card {
    flex: 0 0 400px;
    background: var(--white);
    color: #111;
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    padding: 40px 35px;
    text-align: left;
    position: relative;
    z-index: 3;
  }

  .login-card h2 {
    color: var(--blue-dark);
    margin-bottom: 6px;
    font-size: 26px;
  }

  .login-card p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 14px;
  }

  label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
  }

  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    outline: none;
    transition: 0.2s;
  }

  input[type="email"]:focus,
  input[type="password"]:focus {
    border-color: var(--blue-mid);
    box-shadow: 0 0 0 3px rgba(15, 82, 160, 0.1);
  }

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

  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .form-options label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
  }

  .form-options a {
    color: var(--blue-mid);
    text-decoration: none;
    font-weight: 600;
  }

  .form-options a:hover {
    text-decoration: underline;
  }

  button {
    width: 100%;
    padding: 12px 0;
    background: var(--blue-dark);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
  }

  button:hover {
    background: var(--blue-mid);
  }

  /* reCAPTCHA */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

  /* Quick Links */
  .quick-links {
    margin-top: 24px;
    text-align: center;
  }

  .quick-links p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .quick-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .quick-buttons a {
    text-decoration: none;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 10px 16px;
    color: var(--blue-dark);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
  }

  .quick-buttons a:hover {
    background: #f3f6fb;
  }

  /* ===== Alert & Feedback ===== */
  .alert-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .alert-box.success {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #166534;
  }

  .alert-box.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
  }

  .alert-box i {
    font-size: 18px;
  }

  .alert-box .close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
  }

  .error-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b91c1c;
    font-size: 13px;
    margin-top: 6px;
  }

  .error-text i {
    font-size: 15px;
  }

  .required {
    color: #dc2626;
    font-weight: 600;
    margin-left: 4px;
  }

  /* ===== Buttons ===== */
  .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-submit i {
    font-size: 15px;
  }

  /* .brand-features {
    text-align: left;
    margin-top: 3rem;
    }

    .brand-feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
    }

    .brand-feature i {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    } */
     .brand-features {
        text-align: left;
        margin-top: 2.5rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 580px;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .brand-feature {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }

    .brand-feature:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .brand-feature i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        background: rgba(147, 197, 253, 0.25);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: #93c5fd;
    }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .container {
      flex-direction: column;
      text-align: center;

    }

    .login-card {
      margin-top: 30px;
    }

    .left-heading {
      font-size: 30px;
    }

    body {
      background-attachment: scroll;
    }
  }
