#custom-hubspot-form {
  max-width: 1200px;
  padding: 20px;
  border-radius: 8px;
  color: #01FFFF;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#custom-hubspot-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

#custom-hubspot-form input {
  width: 100%;
  padding: 8px;
  border: 0px solid #ccc;
  box-sizing: border-box;
  background-color: #707070;
  color: white;
}

#custom-hubspot-form button {
  width: 220px;
  background-color: #352BFF;
  font-weight: 800;
  color: #01FFFF;
  padding: 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  align-self: flex-start;
  padding-left; 120px;
  letter-spacing: 1px;
}

#custom-hubspot-form button:hover {
  background-color: #01FFFF;
  color: #352BFF;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column; /* Stack the form fields vertically */
    gap: 10px; /* Reduce the gap between fields */
  }
}
