
    * {
      font-family: 'Urbanist', sans-serif;
    }

    .container-wrapper {
      display: flex;
      height: 100vh;
    }

    .left-section {
      width: 50%;
      background: #152259 ;
      background-size: cover;
      position: relative;
      overflow-y: auto;
      padding: 20px;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    .left-section::-webkit-scrollbar {
      width: 8px;
    }

    .left-section::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 4px;
    }

    .left-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }

    .left-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 20px;
      min-height: 100%;
    }

    .right-section {
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f9f9f9;
    }

    .login-box {
      width: 74%;
      height: auto;
      background: white;
      box-shadow: 0px 2px 70px 0px #0000001F;
      border-radius: 14px;
      padding: 30px;
    }

    .login-logo img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #ccc;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .btn {
      background-color: #152259;
      border-color: #152259;
      border-radius: 8px !important;
    }

    .btn:hover {
      background-color: #074bbd;
    }

    a {
      color: #152259;
      text-align: center;
      position: relative;
      top: 10px;
    }

    /* Hero Section */
    .hero-section {
      text-align: center;
      padding: 50px 20px 20px;
      animation: fadeIn 1s ease-in-out;
    }

    .hero-title {
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      letter-spacing: .5px;
      text-shadow: 0px 2px 4px rgba(0,0,0,0.6);
      margin-bottom: 10px;
    }

    .hero-subtitle {
      font-size: 18px;
      color: #f1f1f1;
      margin-bottom: 20px;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      font-size: 16px;
      font-weight: 600;
      color: #ddd;
    }

    .hero-stats div {
      background: rgba(255, 255, 255, 0.1);
      padding: 10px 20px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
    }

    /* School Logos Carousel */
    .school-logos-container {
      margin: 40px auto;
      overflow: hidden;
      width: 90%;
      max-width: 900px;
      position: relative;
    }

    .logos-slide {
      display: flex;
      animation: scrollLogos 30s linear infinite;
      gap: 40px;
      width: calc(200px * 14); /* Adjust based on number of logos */
    }

    .logos-slide img {
      width: 120px;
      height: auto;
      opacity: 0.9;
      filter: brightness(1.2);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .logos-slide img:hover {
      transform: scale(1.15);
    }

    @keyframes scrollLogos {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Features Section */
    .features-section {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 40px 0;
      flex-wrap: wrap;
    }

    .feature {
      text-align: center;
      color: #fff;
      width: 150px;
      padding: 15px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      animation: fadeIn 1s ease;
      transition: transform 0.3s ease;
    }

    .feature:hover {
      transform: scale(1.05);
    }

    .feature i {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .feature p {
      font-size: 15px;
      margin: 0;
      font-weight: 500;
    }

    /* Footer inside login box */
    .footer-inside {
      text-align: center;
      font-size: 14px;
      color: #666;
      margin-top: 20px;
    }

    .footer-inside a {
      color: #152259;
      text-decoration: none;
      margin: 0 10px;
    }

    .footer-inside a:hover {
      text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Responsive Adjustments */
    @media (max-width: 767px) {
      .left-section {
        display: none;
      }
      .right-section {
        width: 100%;
      }
      .login-box {
        width: 80%;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-stats {
        gap: 20px;
        font-size: 14px;
      }
      .logos-slide img {
        width: 100px;
      }
      .features-section {
        gap: 15px;
      }
      .feature {
        width: 120px;
      }
    }

    @media (max-width: 576px) {
      .hero-section {
        padding: 30px 10px;
      }
      .login-box {
        padding: 25px;
      }
      .logos-slide img {
        width: 80px;
      }
    }


    /* ==============================
   FIX SWEETALERT SIZE & STYLE
============================== */
.swal2-popup {
  font-family: 'Urbanist', sans-serif !important;
  font-size: 16px !important;
  width: 32em !important;   /* default Swal width */
  padding: 1.25em !important;
  box-sizing: border-box !important;
}

.swal2-title {
  font-size: 1.5em !important;
}

.swal2-html-container {
  font-size: 1em !important;
  line-height: 1.4 !important;
}

.swal2-actions {
  margin-top: 1.5em !important;
}

.swal2-confirm {
  padding: 10px 24px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
}