body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
}

.container {
  width: 800px;
  margin: 50px auto;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: block;
  margin: 0 auto 30px auto; /* Adjusted the bottom margin to 30px */
  width: 230px; /* Set a smaller width */
  height: auto; /* Maintains aspect ratio */
}


.form-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 155px; /* Controls spacing between the two groups */
  margin-bottom: 50px;
}

.form-group {
  text-align: center; /* Center the label text */
}

.form-control {
  width: 250px;
  height: 40px;
  padding: 8px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto; /* Center the input/select box under the label */
}

.bold {
  font-weight: bold;
}

.bold-normal {
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.underline {
  text-decoration: underline;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  resize: none;
  border: none; /* Remove textarea border */
  outline: none; /* Remove outline */
  background-color: #fff;
}

button {
  width: 55%;
  display: block;
  margin: 10px auto 0 auto;
  padding: 9px;
  background-color: rgb(212, 60, 31);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  margin-top: 50px;
}

button:hover {
  background-color: #b7391e;
}

.section-heading {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

fieldset {
  border: 2px solid #333;
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}

.option2-fieldset > legend {
  display: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 0;
  margin-bottom: 20px;
}

.checkbox-grid.separate-grid {
  grid-template-columns: repeat(2, 1fr);
}

.option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.option label {
  display: flex;
  align-items: center;
  font-weight: normal;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
  cursor: pointer;
  text-align: left;
}

.option label:hover {
  background-color: #f0f0f0;
}

.option input[type="checkbox"] {
  margin-right: 8px;
}

#statusMessage {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.sample-mode-container {
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.p-class-footer {
  justify-content: center;
  text-align: center;
}
