   body {
      min-height: 100vh;
      margin: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden; /* Prevent scrolling */
    }

    .main-container {
      position: relative;
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }

    .login-card {
      background: #ffffff;
      border: 1px solid #E8E8E8;
      box-shadow: 
        0px 4px 6px -2px #10182808,
        0px 12px 16px -4px #10182814;
      position: relative;
      z-index: 10;
      border-radius: 12px;
      padding: 24px;
      width: 100%;
      max-width: 448px; /* Matches max-w-md (448px) */
      box-sizing: border-box;
    }

    .card-circle {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      top: -150px;
      right: -150px;
      pointer-events: none;
    }

    input:focus {
      outline: none;
      border-color: #B8B8B8;
      box-shadow: none;
    }

    .google-btn:hover {
      background-color: #f8f9fa;
    }

    .microsoft-btn:hover {
      background-color: #f3f4f6;
    }

    .continue-btn:hover {
      background-color: #1f2937;
    }

    .eye-icon {
      color: #656565;
      transition: color 0.2s;
    }

    .eye-icon:hover {
      color: #191919;
    }

    .error-message {
      display: none;
    }

    .error-message.show {
      display: block;
    }

    .login-card-header {
      font-size: 20px;
      font-weight: 500;
      color: #191919;
    }

    .login-card-header-description {
      font-size: 16px;
      font-weight: 400;
      color: #656565;
    }

    .social-btn {
      border: 1px solid #B8B8B8;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 6px;
      height: 44px;
      box-shadow: 0px 1px 2px 0px #1018280D;
      
    }

    .continue-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #191919;
      color: #FFFFFF;
      border-radius: 6px;
      height: 42px;
      font-weight: 500;
      font-size: 16px;
      box-shadow: 0px 1px 2px 0px #1018280D;
    }

    .custom-checkbox {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      border: 2px solid #191919;
      appearance: none;
      cursor: pointer;
      position: relative;
      background-color: white;
    }

     .login-card .custom-checkbox:checked::before {
      content: "";
      position: absolute;
      left: 5px;
      top: 0px;
      width: 5px;
      height: 10px;
      border: solid #191919;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .custom-checkbox:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(25, 25, 25, 0.2);
    }

    /* Responsive adjustments for screens smaller than 1080px */
    @media (max-width: 1079px) {
      .login-card {
        max-width: 90%;
        padding: 16px;
      }

      .login-card-header {
        font-size: 18px;
      }

      .login-card-header-description {
        font-size: 14px;
      }

      .social-btn, .continue-btn {
        height: 40px;
        font-size: 14px;
      }

      input {
        padding: 8px;
      }

      .card-circle {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
      }
    }

    /* Further adjustments for smaller screens */
    @media (max-width: 640px) {
      .login-card {
        padding: 12px;
      }

      .login-card-header {
        font-size: 16px;
      }

      .login-card-header-description {
        font-size: 13px;
      }

      .social-btn, .continue-btn {
        height: 36px;
        font-size: 13px;
      }

      input {
        padding: 6px;
      }

      .card-circle {
        width: 150px;
        height: 150px;
        top: -75px;
        right: -75px;
      }
    }

    .sign-up-btn{
        border: 1px solid #B8B8B8;
        background-color: #FFFFFF;
        border-radius: 6px;
        padding: 6px 12px;
        color: #191919;
        height: 34px;
        font-size: 14px;
        font-weight: 400;
        display: flex;
        justify-content: center;
        align-items: center;
    }