/* style.css */

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #f4f7f8;
  color: #333;
}

h1 {
  text-align: center;
  margin-bottom: 5px;
}

p.desc {
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Form Styles */
form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.field-block {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  height: 70px;
  resize: vertical;
}

.section-title {
  margin-top: 30px;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #007BFF;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.question-block {
  margin-bottom: 20px;
}

.om-options {
  margin-left: 20px;
}

.om-option {
  margin: 3px 0;
}

button {
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

button:hover {
  background: #0056b3;
}

.note {
  font-size: 13px;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 600px) {
  body {
    margin: 10px;
  }
  form {
    padding: 10px;
  }
  .om-options {
    margin-left: 10px;
  }
  h1 {
    font-size: 24px;
  }
}
