body {
  background-color: #164d1d;
  font-family: 'Poppins', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

.jungle {
  position: relative;
  background-color: #145c1f;
  border-radius: 20px;
  margin: 40px auto;
  width: 90%;
  max-width: 700px;
  padding: 40px 0;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.form-container {
  background-color: #206a28;
  margin: auto;
  padding: 25px;
  border-radius: 20px;
  width: 300px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

h2 {
  font-size: 1.5rem;
  background: #2d8235;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 20px;
}

label {
  display: block;
  text-align: left;
  margin: 8px 0 3px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  border: none;
  margin-bottom: 10px;
  outline: none;
  font-size: 0.9rem;
}

button {
  background-color: #43a047;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #2e7d32;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  color: black;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 10px;
}

.recaptcha-box {
  width: 50px;
  height: 30px;
  background-image: url('https://www.gstatic.com/recaptcha/api2/logo_48.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.animal {
  position: absolute;
  width: 120px;
}

.decor {
  position: absolute;
  opacity: 0.9;
}

.tucan { top: 20px; left: 20px; }
.colibri { top: 40px; right: 30px; width: 100px; }

.link {
  margin-top: 10px;
  font-size: 0.9rem;
}

.link a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: bold;
}

.link a:hover {
  text-decoration: underline;
}