@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
  font-family: "Alata", sans-serif;
      background: rgb(11 17 24);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    

    .container {
      background: #0b1118;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 500px;
      border: 2px solid #f9c105 !important;
      border-radius: 30px !important;
      box-shadow: 0px 0px 15px #f9c105 !important;
    }

    h2 {
      color: #fff;
      text-align: center;
      margin-bottom: 30px;
      font-size: 28px;
      font-weight: 600;
    }

    .form-group {
      margin-bottom: 20px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      color: #f9c105;
      font-weight: 500;
    }

    input, textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #3498db;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    button {
      background: #262b32;
      color: white;
      padding: 14px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background: #f7bf05;
    }

    .alert-message {
      margin-top: 20px;
      padding: 15px;
      border-radius: 8px;
      display: none;
      text-align: center;
      font-weight: 500;
    }

    .success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }

    @media (max-width: 480px) {
      .container {
        padding: 20px;
      }

      h2 {
        font-size: 24px;
      }

      input, textarea, button {
        font-size: 14px;
      }
    }
    .grecaptcha-badge {
    bottom: 16px !important;
    left: 16px !important;
    right: auto !important;
}

/* ——————————————————————————— */
/* reCAPTCHA */
/* ——————————————————————————— */
.grecaptcha-badge {
  transform: translateX(-75%);
  transform-origin: left center;
  transition: all .5s ease-in-out!important;
  bottom: 10px !important;
  left: 10px !important;
  z-index: 1000;
}

.grecaptcha-badge:hover {
  transition: all .5s ease-in-out!important;
  transform: translateX(0);
}