
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: #f7f9fa;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      padding: 20px;
      text-align: center;
    }

    .logo {
      width: 140px;
      height: auto;
      margin-bottom: 50px;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); /* makes it "bolder" */
    }

    .recaptcha-wrapper {
      background: #fff;
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      margin-bottom: 20px;
      transform-origin: center;
    }

    h1 {
      font-size: 18px;
      color: #5c5c5c;
      margin-top: 10px;
    }

    /* Responsive scaling for reCAPTCHA */
    @media (max-width: 480px) {
      .recaptcha-wrapper {
        transform: scale(0.78);
      }
      h1 {
        font-size: 16px;
      }
      .logo {
        width: 80px;
        margin-bottom: 20px;
      }
    }

    @media (min-width: 481px) and (max-width: 767px) {
      .recaptcha-wrapper {
        transform: scale(0.85);
      }
      h1 {
        font-size: 17px;
      }
      .logo {
        width: 90px;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .recaptcha-wrapper {
        transform: scale(0.92);
      }
    }

    @media (min-width: 1025px) {
      .recaptcha-wrapper {
        transform: scale(1);
      }
    }
