.ucf-form {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.ucf-form-group {
  margin-bottom: 15px;
}

.ucf-form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.ucf-form-group input,
.ucf-form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.ucf-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.ucf-form button {
  padding: 10px 20px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.ucf-form button:hover {
  background-color: #005d8c;
}

@media (max-width: 600px) {
  .ucf-form {
    padding: 15px;
  }
}
