body{
	background-image: url("../images/fondo-form.jpg");
	font-family: sans-serif;
	margin: 0;
	padding: 0;
}

section{
	width: 950px;
	background-color: white;
	margin: auto;
	border-radius: 45px;
	box-shadow: 0 0 18px 0px gray;
	margin-top: 120px;
}

section>div>img{
	width: 100%;
}

h2{
	text-align: center;
	color: #176d3c;
	width: fit-content;
	font-size: 47px;
	margin: auto;
	border-bottom: 2px solid #176d3c;
	margin-top: 50px;
}

input{
	border: 2px solid #176d3c;
	border-radius: 12px;
	padding: 5px;
	margin-top: 4px;
	width: 85%;
}

form{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 60%;
	margin: auto;
	padding-top: 50px;
}

form>div{
	padding-bottom: 35px;
}

input[type="checkbox"]{
	width: inherit;
}

input[type="radio"]{
	width: inherit;
	
	 appearance: none; /* Quita el estilo por defecto */
  -webkit-appearance: none; /* Compatibilidad con Safari/Chrome */
  width: 15px;
  height: 15px;
  border: 2px solid #176d3c; /* Borde  */
  border-radius: 50%; /* Forma circular */
  position: relative;
  cursor: pointer;
  margin-right: 5px;
}

input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 9px;
  height: 9px;
  background: #176d3c; /* Punto interior  */
  border-radius: 50%;
}

div.bloque_radio{
	display: grid;
	grid-template-columns: 2fr, 1fr;
	margin-top: 15px;
}

div.bloque_radio label{
	color: black;
}

label{
	color: #176d3c;
	font-weight: bold;
}

button{
	background-color: #176d3c;
    width: fit-content;
    border-radius: 10px;
    padding: 5px 15px;
    border: none;
    color: white;
}

div.contador{
	width: 33%;
}

div.contador .circulo{
	border-radius: 50%;
    height: 50px;
	width: 50px;
    border: 1px solid black;
    background-color: white;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    padding-top: 8px;
    box-sizing: border-box;
	margin: auto;
}

div.contador .texto{
	font-weight: bold;
    text-align: center;
    font-size: 130%;
    line-height: 0.8;
    margin-top: 10px;
}

#contenedor_contador{
	left: 20%;
	right: 20%;
	display: flex;
	justify-content: space-evenly;
	position: absolute;
	bottom: 20px;
}