/* Base layout */
body {
  font-family: Arial, sans-serif;
  background-color: #ffccff;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

/* Headings */
h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #003366; 
}

/* Form container */
form {
  max-width: 650px;
  margin: 0 auto;
}

/* One-question blocks */
fieldset {
  border: 2px solid #003366;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #e6f0ff; 
}

legend {
  font-weight: bold;
  padding: 0 5px;
  color: #003366;
}

/* Labels */
label {
  display: block;
  margin-bottom: 8px;
  color: #000033; 
}

/* Inputs, selects, textareas */
input,
select,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #003366;
  background-color: #ffffff;
  color: #000000;
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 4px solid #ff6600;  
  outline-offset: 3px;
  background-color: #fff2e6;    
}

/* Submit button */
button {
  background-color: #003366;
  color: #ffffff;
  padding: 10px 15px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
