/* Start custom CSS for html, class: .elementor-element-2c654a2 *//* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

/* Container geral */
.form-container {
  max-width: 600px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Estilo do formulário */
.custom-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {
  border-color: #16c79a;
  background-color: #fff;
  outline: none;
}

/* Botão */
.custom-form button {
  width: 100%;
  background: #16c79a;
  color: white;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-form button:hover {
  background: #13a88b;
}/* End custom CSS */