*, *::before, *::after {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
      line-height: 1.5;
    }

    a {
      color: #6c757d;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
      color: #343a40;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Header */
    header {
      background-color: #212529;
      padding: 1rem 2rem;
      color: #fff;
    }

    header p {
      margin: 0;
      font-size: 1rem;
    }

    .site-header-icon a {
      color: #fff;
      font-size: 1.2rem;
      margin-left: 0.5rem;
    }
    .form-wrapper h4{
       margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: #1a5276;
    }

    /* Section */
    .section-1 {
      padding: 2rem 1rem;
      min-height: calc(100vh - 160px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .container-1 {
      max-width: 1140px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .card-1 {
      background-color: #fff;
      border: 1px solid #dee2e6;
      border-radius: 0.375rem;
      box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 0.075);
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      min-height: 500px;
    }

    .card-1 .image-side {
      flex: 1 1 50%;
      min-height: 300px;
    }

    .card-1 .image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-1 .form-side {
      flex: 1 1 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 2.5rem;
    }

    .form-wrapper {
      max-width: 380px;
      width: 100%;
      text-align: center;
    }

    .form-wrapper .logo-1 {
      margin-bottom: 1rem;
    }

    .form-wrapper .logo-1 img {
      max-height: 70px;
      object-fit: contain;
      margin: 0 auto;
    }

    h4 {
      margin-bottom: 2rem;
      font-size: 1.375rem;
      font-weight: 600;
    }

    form {
      width: 100%;
      text-align: left;
    }

    .form-group {
      position: relative;
      margin-bottom: 1.5rem;
    }

    input {
      width: 100%;
      padding: 1.25rem 1rem 0.5rem 1rem;
      font-size: 1rem;
      border: 1px solid #ced4da;
      border-radius: 0.375rem;
      outline-offset: 2px;
    }

    input:focus {
      border-color:  #89F336;

    }

    label {
      position: absolute;
      top: 0.5rem;
      left: 1rem;
      font-size: 0.875rem;
      color: #6c757d;
      background-color: #fff;
      padding: 0 0.25rem;
      transition: all 0.3s ease;
      pointer-events: none;
    }

    input:focus + label,
    input:not(:placeholder-shown) + label {
      top: -0.6rem;
      left: 0.75rem;
      font-size: 0.75rem;
    }


    .bottom-links {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.9rem;
    }

    
        .btn {
            width: 100%;
            padding: 0.8rem;
            border: none;
            background-color: #1a5276;;
            color: #fff;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 1rem;
        }

        .btn:hover {
            background-color: #89F336;
        }

   
        @media (max-width: 576px) {

            .btn {
                font-size: 0.9rem;
            }

        }


    /* Responsive */
    @media (max-width: 767px) {
      .card-1 {
        flex-direction: column;
      }

      .card-1 .image-side {
        height: 180px;
      }

      .form-wrapper {
        max-width: 100%;
      }

      .card-1 .form-side {
        padding: 2rem 1rem;
      }
    }


     #tokenSection, #loader { display: none; }
    #message { margin: 10px 0; font-weight: bold; color: #444; }
    .btn { cursor: pointer; }
    .spinner {
      border: 6px solid #f3f3f3;
      border-top: 6px solid #3498db;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 1s linear infinite;
      margin: 0 auto 10px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }