/* Make the form and its elements fully responsive */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  
  color: white; /* White text */
}

#gb-form {
	background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
  max-width: 600px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  
  color: white; /* White text */
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea,
input[type="submit"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 20px;
  border: 1px solid #ccc;
  border-radius: 5px;  /* Rounded corners */
  background-color: rgba(255, 255, 255, 0.9); /* White background with some opacity */
  color: black; /* Black text */
}

input[type="submit"] {
  background-color: #4CAF50; /* Green background */
  color: white;  /* White text */
  cursor: pointer;
}

/* Adding responsiveness */
@media only screen and (max-width: 600px) {
  #gb-form {
    padding: 15px;
  }
}
