<style>
      body {
        background-color: #f0f2f5;
        font-family: "soleil", sans-serif;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        margin: 0;
       }

      header {
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        flex-wrap: wrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }
      header img {
       width: auto;
       max-width: 70%;
       max-height: 60px;
       object-fit: contain;
      }
      .header-quick-links button {
        background-color: #004B85;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 0.8rem 1.6rem;
        font-size: 1.5rem;
        cursor: pointer;
        transition: 0.2s ease;
      }
      .header-quick-links button:hover {
        background-color: #004B85;
        transform: translateY(-2px);
      }
      .main-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-grow: 1;
        padding-top: 80px;
        padding-bottom: 80px;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
      }

      .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
        transform: translateY(20px);
      }
      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .login-box {
        background-color: #ffffff;
        border-radius: 24px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        max-width: 820px;
        width: 100%;
        display: flex;
        overflow: hidden;
        border: 1px solid #efefef;
        backdrop-filter: blur(6px);
        transition: all 0.3s ease;
        margin: 0 auto;
      }
      .login-box:hover {
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
      }

      .left-panel-login {
        width: 100%;
        background: #f8f9fa;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2.2rem 1.5rem;
        border-right: 1px solid #e5e5e5;
      }

      .icon-btn {
        width: 72px;
        height: 72px;
        background: #ffffff;
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border: 1px solid #dcdcdc;
        transition: all 0.3s ease;
        position: relative;
        font-family: "Inter", sans-serif;
        font-weight: 500;
      }
      .icon-btn i {
        transition: all 0.3s ease;
      }

      .icon-btn span.tooltip {
        position: absolute;
        left: 100%;
        margin-left: 12px;
        font-size: 1.5rem;
        color: #004B85;
        font-weight: 600;
        text-decoration: none;
        opacity: 1;
        transition: all 0.3s ease;
        white-space: nowrap;
      }
      .icon-btn:hover {
        transform: translateX(-12px);
      }
      .icon-btn:hover span.tooltip {
        opacity: 1;
      }

      .right-panel-login {
        width: 100%;
        padding: 2rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
      }

     .login-title {
        text-align: center;
        font-size: 2.0rem;
        font-weight: 700;
        color: #004B85;
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 0.5rem;
}

      .login-title::after {
        content: "";
        display: block;
        width: 100%;             
        height: 4px;             
        margin: 8px auto 0;
        border-radius: 2px;
        background: linear-gradient(
            90deg,
            #004B85 0%,
            #004B85 25%,
            #C88A12 25%,
            #C88A12 100%
    )
}

      .lgn-input-group-text {
        background-color: #004B85;
        color: white;
        border: none;
        border-radius: 4px 0 0 4px; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 12px; /* adds horizontal space for icon */
        font-size: 1.2rem; /* adjust icon size */
        height: 48px; /* makes input taller */
      }

      .input-group input {
        flex: 1;
        padding: 0 12px;
        font-size: 1.5rem;
        border: 1px solid #ccc;
        border-left: none; /* connect with icon */
        border-radius: 0 4px 4px 0;
        height: 48px; /* match icon height */
    }


      .lg-form-control {
        border-radius: 0 14px 14px 0;
        border: 1px solid #bfc5cc;
        padding: 0.75rem;
        background: #fafafa;
      }
      .lg-form-control:focus {
        border-color: #004B85;
        box-shadow: 0 0 0 4px rgba(26, 75, 132, 0.2);
      }
      .btn-login {
        background-color: #004B85;
        color: white;
        border-radius: 14px;
        width: 100%;
        margin-top: 1rem;
        padding: 0.85rem;
        font-size: 1.1rem;
        font-weight: 600;
        transition: 0.25s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
      }
      .btn-login:hover {
        background-color: #153e6f;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      }

      .quick-links .ql {
        color: #4b4b4b;
        text-decoration: none;
        font-size: 1.5rem;
        transition: 0.2s ease;
      }
      .quick-links .ql:hover {
        color: #004B85;
        text-decoration: underline;
      }

      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid #dcdcdc;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s ease;
        background: #fff;
      }
      .social-icon i {
        width: 22px;
        height: 22px;
        color: #4b4b4b;
      }
      .social-icon:hover {
        background: #f2f2f2;
        border-color: #c7c7c7;
        transform: translateY(-2px);
      }

      .info-section {
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        font-size: 1.5rem;
        color: #555;
        line-height: 1.6;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 8%;
      }

      .info-tabs {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .info-tab {
        padding: 0.4rem 1rem;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.25s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 1.5rem;
        color: #495057;
        border-bottom: 2px solid transparent;
      }
      .info-tab.active {
        color: #004B85;
        border-bottom: 2px solid #004B85;
      }

      .info-slider {
        display: flex;
        transition: transform 0.5s ease;
      }
      .info-content-slide {
        min-width: 100%;
        padding: 0.5rem 0;
        text-align: center;
      }

      .sv-alert-default {
      background-color: #004B85;
      border-color: #004B85;
      color: #fff;
      font-size: 1.2rem;
      }

      .portal-container{
      max-width:800px;
      width:100%;
      padding:20px;
      margin:0 auto;
      margin-bottom: 60px;
      }

      .portal-title{
      text-align:center;
      font-size:28px;
      font-weight:700;
      color:#1a4b84;
      margin-bottom:40px;
      }

      .action-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:30px;
      }

      .portal-card{
      background:white;
      border-radius:20px;
      padding:35px;
      text-align:center;
      box-shadow:0 15px 35px rgba(0,0,0,0.08);
      border:1px solid #eee;
      transition:all .3s ease;
      }

      .portal-card:hover{
      transform:translateY(-6px);
      box-shadow:0 20px 45px rgba(0,0,0,0.12);
      }

      .portal-icon{
      width:60px;
      height:60px;
      margin:auto;
      margin-bottom:15px;
      color:#1a4b84;
      }

      .portal-heading{
      font-size:18px;
      font-weight:600;
      margin-bottom:10px;
      }

      .portal-desc{
      font-size:14px;
      color:#666;
      margin-bottom:20px;
      }

      .portal-btn{
      background:#1a4b84;
      border:none;
      color:white;
      padding:10px 26px;
      border-radius:12px;
      font-weight:600;
      transition:0.25s;
      }

      .portal-btn:hover{
      background:#153e6f;
      }

      .portal-btn.secondary{
      background:#2e6bc5;
      }

      @media (max-width: 768px) {
        .login-box {
          flex-direction: column;
          max-width: 95%;
        }
        .left-panel,
        .right-panel {
          width: 100%;
          border-right: none;
          border-bottom: 1px solid #e0e0e0;
        }
        .info-section {
           margin-bottom: 60%;
        }
        icon-btn {
          width: 72px;
          height: 72px;
        }

        .icon-btn span.tooltip {
          position: absolute;
          top: 100%;              /* place below icon */
          left: 50%;              /* center horizontally */
          transform: translateX(-50%);
          margin-left: 0;
          margin-top: 5px;
          font-size: 0.9rem;      /* smaller for mobile */
          white-space: nowrap;
          opacity: 0;             /* always visible on mobile */
        }

        /* remove hover movement on mobile */
        .icon-btn:hover {
          transform: none;
        }
        .header-quick-links button {
        font-size: 1.2rem; /* smaller text */
        padding: 0.6rem 1rem; /* smaller padding */
        width: 100%; /* full width for mobile */
        margin-bottom: 0.5rem; /* spacing between buttons */
    }
        .header-quick-links {
        display: flex;
        flex-direction: column; /* stack buttons vertically */
        gap: 0.5rem;
      }
        
        .action-grid{
        grid-template-columns:1fr;
        gap:20px;
        }

       .portal-container{
        padding:15px;
        }

        .portal-card{
        padding:25px;
        }

}

}
</style>