.meu-plugin-formulario {
  max-width: 500px;
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #f9f9f9;
}

.meu-plugin-formulario h3 {
  margin-top: 0;
  color: #333;
}

.campo {
  margin-bottom: 15px;
}

.campo label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.meu-botao-formulario {
  background: #007cba;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.meu-botao-formulario:hover {
  background: #005a87;
  transform: translateY(-1px);
}

.meu-botao-formulario:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.meu-botao-formulario.clicado {
  transform: scale(0.98);
}

#resultado-formulario {
  margin-top: 15px;
}

.sucesso {
  padding: 10px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
}

.erro {
  padding: 10px;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}
