


#satisfaction-form {
    background-color: #fff;
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
}

.box-text h1 {
    text-wrap: balance;
}

legend {
    font-size: 1.5em;
    margin-bottom: 10px;    
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.question {
    margin-bottom: 50px;
}

.question p {
    text-wrap: balance;
}

.options label {
    margin: 0 10px;
}

input[type="checkbox"] {
	width: 20px;
	height: 20px;
	appearance: none;         /* Elimina el estilo por defecto */
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 2px solid #555;
	border-radius: 4px;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	margin-bottom: -4px;
	margin-right: 5px;
  }
  
  /* Estilo cuando está marcado */
  input[type="checkbox"]:checked {
	background-color: #4caf50;
	border-color: #4caf50;
  }
  
  /* Añadir un "check" con un pseudo-elemento */
  input[type="checkbox"]:checked::after {
	content: '✔';
	color: white;
	font-size: 14px;
	position: absolute;
	left: 3px;
	top: 0px;
  }

  input[type="radio"] {
    width: 20px;
	height: 20px;
	appearance: none;         /* Elimina el estilo por defecto */
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 2px solid #555;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	transition: all 0.2s ease;
	margin-bottom: -4px;
	margin-right: 5px;
  }
  
  /* Estilo cuando está marcado */
  input[type="radio"]:checked {
	background-color: #4caf50;
	border-color: #4caf50;
  }
  
  /* Añadir un "check" con un pseudo-elemento */
  input[type="radio"]:checked::after {
	content: '✔';
	color: white;
	font-size: 14px;
	position: absolute;
	left: 3px;
	top: 0px;
  }

  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    resize: vertical;
	max-width: 500px;
  }

  button[type="submit"] {
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .description {
    font-size: 1.3em;
    max-width: 800px;
	margin: 0 auto;
  } 
    
    