@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	background: rgba(255, 105, 180, 0.3);
	font-family: 'Raleway' , sans-serif;
}

.avatar {
  	margin: 0 auto;
  	margin-top: 30px;
  	position: relative;
  	width: 150px;
  	height: 150px;
  	border-radius: 50%;
  	border: 2px solid;
	border-color: hotpink;
  	overflow: hidden;
  	display: flex;
  
}

.avatar .avatarImage {
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	right: 0;
  	background-size: cover;
  	background-position: center;
  	background-repeat: no-repeat;
}

.encabezado {
	padding: 10px;
	background: hotpink;
	color: white;
	margin-top: 15px;
	font-family: 'Montserrat' , sans-serif;
	text-align: center;
}

.encabezado-normal {
	margin-top: 10px;
	font-family: 'Raleway' , sans-serif;
	text-align: center;
}

.titulos {
	font-family: 'Montserrat' , sans-serif;
	text-align: center;
	
}

.pregunta {
	font-family: 'Raleway' , sans-serif;
	font-weight: 700;
}

.opciones {
	font-family: 'Raleway' , sans-serif;
	margin: 0 auto;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 5px;
	max-width: 400px;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	background-color: white; /* Fondo semitransparente */
}

.opciones label {
	font-size: 16px;
	margin-left: 10px;
}

.gray-box {
	width: 350px;
  	display: flex;
  	align-content: center;
  	background-color: #f0f0f0; /* Fondo gris */
  	border-radius: 5px;
  	padding-top: 10px;
  	margin: 8px;
}

.bodymetrics {
	margin-top: 30px;
}
/* Tu CSS existente */

/* Estilo para el checkbox real (oculto) */
.real-checkbox {
  display: none;
}

/* Estilo para el checkbox personalizado */
.custom-checkbox {
  width: 20px; /* Ancho deseado del cuadro */
  height: 20px; /* Altura deseada del cuadro */
  background-color: white;
  border: 2px solid none; /* Borde gris */
  border-radius: 5px; /* Esquinas redondeadas */
  cursor: pointer;
  position: relative;
}

/* Estilo para el check en forma de "v" */
.custom-checkbox::before {
  content: '\2714'; /* Código Unicode para el símbolo de verificación */
  font-size: 16px;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.2s ease; /* Transición para el color del check */
}

/* Cambiar el color del check a verde cuando se selecciona */
.real-checkbox:checked + .custom-checkbox::before {
  color: #4caf50;
}


.alturaypeso {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.bodyMetric {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  border-radius: 5px;
}

.bodyMetric label {
  
}

.inputWrap {
  text-align: center;
  background-color: #3c3c3c;
  height: 40px;
  width: 130px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}

.inputWrap input {
  font-size: 24px;
  font-weight: 600;
  color: white;
  background-color: #3c3c3c;
  border: 0;
  width: 100%;
  text-align: center;
  line-height: 40px; /* Añade esta propiedad para centrar verticalmente */
}

.explicativo {
  font-family: 'Raleway', sans-serif; /* Aplica la fuente Raleway */
  font-size: 16px;
  font-weight: normal; /* Establece la fuente en normal */
  color: #555; /* Cambia el color del texto explicativo según tu preferencia */
  margin-top: 10px; /* Espacio superior para separar el texto del campo de entrada */
  text-align: center; /* Centra el texto horizontalmente */
}

