  body {
      margin: 0;
      height: 100vh;
      background: #f5f7fa;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      overflow: hidden;
  }

  .login-wrapper {
      display: flex;
      height: 100vh;
      width: 100%;
  }

  /* Left Side - Image Slider */
  .slider-container {
      flex: 1;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .slider-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      transition: transform 0.6s ease-in-out;
  }

  .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 3rem;
      color: white;
      text-align: center;
  }

  .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
  }

  .slide-inner {
      position: relative;
      z-index: 2;
      max-width: 600px;
  }

  .slide-icon {
      font-size: 5rem;
      margin-bottom: 2rem;
      animation: float 3s ease-in-out infinite;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-20px);
      }
  }

  .slide h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .slide p {
      font-size: 1.2rem;
      opacity: 0.95;
      margin-bottom: 2rem;
  }

  .slide-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
  }

  .feature-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .feature-check {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  /* Slider Controls */
  .slider-controls {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 2rem;
      align-items: center;
  }

  .slider-nav {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      color: white;
  }

  .slider-nav:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
  }

  .slider-dots {
      display: flex;
      gap: 0.5rem;
  }

  .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s;
  }

  .dot.active {
      width: 30px;
      border-radius: 5px;
      background: white;
  }

  /* Right Side - Login Form */
  .login-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: white;
      padding: 2rem;
      overflow-y: auto;
  }

  .login-header {
      text-align: center;
      padding: 1rem 0 0.5rem;
  }

  .school-logo {
      /* width: 70px; */
      height: 70px;
      object-fit: contain;
      margin-bottom: 0.5rem;
  }

  .school-name {
      font-size: 1.4rem;
      font-weight: bold;
      color: #2C3E50;
      margin-bottom: 0.3rem;
      text-transform: uppercase;
  }

  .school-tagline {
      font-size: 0.8rem;
      color: #7f8c8d;
  }

  .login-form-wrapper {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
  }

  .login-form {
      width: 100%;
      max-width: 450px;
  }

  .login-form h1 {
      font-size: 1.6rem;
      color: #2C3E50;
      margin-bottom: 0.3rem;
      font-weight: 700;
  }

  .login-form .subtitle {
      color: #7f8c8d;
      margin-bottom: 1.5rem;
      font-size: 0.85rem;
  }

  .form-group {
      margin-bottom: 1rem;
  }

  .form-label {
      font-weight: 600;
      color: #2C3E50;
      margin-bottom: 0.5rem;
      display: block;
      font-size: 0.9rem;
  }

  .form-control {
      width: 100%;
      padding: 0.6rem 0.9rem;
      border: 2px solid #e1e8ed;
      border-radius: 8px;
      font-size: 0.95rem;
      transition: all 0.3s;
  }

  .form-control:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }

  .form-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 0.85rem;
  }

  .remember-me {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #2C3E50;
  }

  .forgot-link {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
  }

  .forgot-link:hover {
      text-decoration: underline;
  }

  .btn-login {
      width: 100%;
      padding: 0.7rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }

  .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  }

  /* School Code Section */
  .school-code-section {
      margin-top: 1.2rem;
      padding-top: 1.2rem;
      border-top: 2px dashed #e1e8ed;
      text-align: center;
  }

  .school-code-label {
      font-size: 0.75rem;
      color: #7f8c8d;
      font-weight: 600;
      margin-bottom: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .school-code-box {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
      border: 2px solid #667eea;
      border-radius: 10px;
      padding: 0.7rem 1.2rem;
      margin-bottom: 0.4rem;
  }

  .school-code-value {
      font-size: 1.3rem;
      font-weight: bold;
      color: #667eea;
      letter-spacing: 2px;
      font-family: 'Courier New', monospace;
  }

  .copy-code-btn {
      background: #667eea;
      border: none;
      border-radius: 6px;
      padding: 0.5rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
  }

  .copy-code-btn:hover {
      background: #764ba2;
      transform: scale(1.1);
  }

  .school-code-hint {
      font-size: 0.75rem;
      color: #95a5a6;
      font-style: italic;
  }

  /* Footer */
  .login-footer {
      text-align: center;
      padding: 1rem;
      border-top: 1px solid #e1e8ed;
  }

  .powered-by {
      font-size: 0.8rem;
      color: #7f8c8d;
      margin-bottom: 0.6rem;
  }

  .powered-by a {
      color: #667eea;
      text-decoration: none;
      font-weight: 600;
  }

  .powered-by a:hover {
      text-decoration: underline;
  }

  .app-download {
      margin: 0.6rem 0;
  }

  .google-play-btn {
      display: inline-block;
      transition: transform 0.2s;
  }

  .google-play-btn:hover {
      transform: scale(1.05);
  }

  .google-play-btn img {
      height: 38px;
  }

  .footer-links {
      margin-top: 0.6rem;
      font-size: 0.8rem;
  }

  .footer-links a {
      color: #667eea;
      text-decoration: none;
      margin: 0 0.5rem;
  }

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

  /* Responsive */
  @media (max-width: 992px) {
      .login-wrapper {
          flex-direction: column;
      }

      .slider-container {
          height: 40vh;
      }

      .login-container {
          height: 60vh;
      }

      .slide h2 {
          font-size: 1.8rem;
      }

      .slide p {
          font-size: 1rem;
      }
  }

  @media (max-width: 576px) {
      .school-name {
          font-size: 1.3rem;
      }

      .login-form h1 {
          font-size: 1.5rem;
      }

      .slide-icon {
          font-size: 3rem;
      }
  }
