/**
 * Custom styling for HubSpot API forms
 */

.hubspot-api-form {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 6px;
  margin-bottom: 20px;
}

.hubspot-api-form .form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.hubspot-api-form .form-input:focus {
  outline: none;
  border-color: #fbd505;
  box-shadow: 0 0 0 2px rgba(251, 213, 5, 0.2);
}

.hubspot-api-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.hubspot-api-form .checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  margin-right: 10px;
}

.hubspot-api-form .checkbox-group label {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.hubspot-api-form .btn-submit {
  background-color: #fbd505;
  color: #333;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease;
}

.hubspot-api-form .btn-submit:hover {
  background-color: #e6c300;
}

.hubspot-api-form .btn-submit:disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

.hubspot-api-form .form-success {
  display: none;
  color: #4caf50;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  background-color: rgba(76, 175, 80, 0.1);
  font-weight: bold;
}

.hubspot-api-form .form-error {
  display: none;
  color: #f44336;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  background-color: rgba(244, 67, 54, 0.1);
  font-weight: bold;
}

/* Mobile Responsive adjustments */
@media (max-width: 768px) {
  .hubspot-api-form {
    padding: 15px;
  }
  
  .hubspot-api-form .form-input {
    font-size: 14px;
    padding: 10px;
  }
  
  .hubspot-api-form .btn-submit {
    font-size: 14px;
    padding: 10px 16px;
  }
} 