      body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #fff;
            display: flex;
            height: 100vh;
            overflow: hidden;
          }

          .back-btn {
            position: absolute;            
            top: 25px;
            left: 35px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;                 
            font-weight: 300;
            text-decoration: none;
            padding: 10px 18px;
            transition: all 0.3s ease;
            z-index: 1000;               
          }

      .back-btn:hover {
        color: #346347;
        transform: translateX(-3px); 
      }

      .back-btn i {
        font-size: 16px;
      }


      .login-wrapper {
            display: flex;
            height: 100vh; 
            width: 100vw;    
            background-color: #fff;
            overflow: hidden; 
      }

    .login-left {
      flex: 1;
      background-color: #141E46;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-top-right-radius: 180px;    
      border-bottom-right-radius: 180px; 
      height: 100%;                      
      padding: 40px;
      box-sizing: border-box;
      text-align: center;
    }


    .login-logo {
      width: 150px;
      margin-bottom: 15px;
    }

    .tagline {
      font-size: 14px;
      color: #cbd5e1;
      margin-bottom: 40px;
    }

    .login-left h1 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .subtext {
      font-size: 15px;
      color: #e2e8f0;
      max-width: 280px;
    }

    .login-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 40px 60px;
    }

    .login-right h2 {
      font-size: 28px;
      font-weight: 700;
      color: #0b1743;
      margin-bottom: 5px;
    }

    .login-right .desc {
      color: #555;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 350px;
      gap: 15px;
    }

    .login-form input {
      padding: 12px 15px;
      border: none;
      border-radius: 30px;
      background-color: #e6eeeb;
      font-size: 14px;
      outline: none;
    }

    .login-form button {
      padding: 12px 15px;
      background-color: #315a42;
      color: #fff;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
    }

    .login-form button:hover {
      background-color: #23412f;
    }

    .admin-warning {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #0b1743;
      font-size: 14px;
      margin-top: 100px;
    }

    .admin-warning i {
      color: #0b1743;
    }

    footer {
      margin-top: 100px;
      font-size: 12px;
      color: #0b1743;
    }