 
.dinare-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.dinare-form label {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}
.dinare-form input, .dinare-form textarea, .dinare-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.dinare-form button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  cursor: pointer;
}
.dinare-form button:hover {
  background: #004999;
}
.success-message { color: green; margin-bottom: 10px; }
.error-message { color: red; margin-bottom: 10px; }
@media (max-width: 600px) {
  .dinare-form { padding: 15px; }
}
