body {
	height: 100vh;
	margin: 0;
	display: grid;
	place-items: center;
	font-family: "Inter", sans-serif;
	user-select: none;
	background-image: url('istockphoto-1458353392-612x612.jpg'); /* Aquí coloca la ruta de tu imagen */
		background-size: cover;  /* Asegura que la imagen cubra toda la pantalla */
		background-position: center;  /* Centra la imagen */
		background-repeat: no-repeat;  /* Evita que se repita la imagen */
		height: 100vh;  /* Asegura que el fondo cubra toda la ventana */
		margin: 0;  /* Elimina márgenes predeterminados */
	
	
}

fieldset {
	
	padding: 0;
	margin: 0;
	border: 0;
	max-width: 1000px;
	min-height: 800px;
	border-radius: 20px;
	width: 100%;
}

legend {
	font-size: 30px;
	font-weight: 600;
	color: #191919;
	margin: 0;
	background: #edf4fe;
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 10px 10px 0 0;
	border: 2px solid #0054ca;
	display: flex;
}

fieldset label {
	font-weight: 400;
	font-size: 40px;
	cursor: pointer;
	display: flex;
	align-items: center;
	flex: 1;
	box-sizing: border-box;
	display: flex;
	padding: 20px 20px 20px 50px;
	font-weight: 500;
	color: #191919;
	-webkit-tap-highlight-color: transparent;
}

fieldset input[type="radio"] {
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	transition: linear 0.8s;
	height: 0;
	width: 0;
	-webkit-tap-highlight-color: transparent;
}

fieldset input[type="radio"]:after {
	content: "";
	position: absolute;
	height: 16px;
	width: 20px;
	top: -10.5px;
	left: -30px;
	border-radius: 20px;
	border: 2px solid #3a88f6;
	transition: linear 0.2s;
	cursor: pointer;
}

fieldset input[type="radio"]:checked:after {
	content: "";
	position: absolute;
	height: 16px;
	width: 16px;
	background: #3a88f6;
	transition: linear 0.2s;
	cursor: pointer;
}

fieldset input[type="radio"]:checked:before {
	content: "";
	position: absolute;
	height: 8px;
	width: 8px;
	border-radius: 4px;
	background: #fff;
	left: -24px;
	top: -4.5px;
	z-index: 1;
	cursor: pointer;
}

.radio-item-container {
	display: flex;
	flex-direction: column;
	border: 2px solid #3a88f6;
	border-top: 0;
	background: #fff;
	border-radius: 0 0 10px 20px;
	padding: 10px 0;
}

.radio-item {
	display: flex;
	position: relative;
}

.icon {
	font-size: 40px;
	position: absolute;
	right: 26px;
	top: 11px;
	transition: linear 0.3s;
}

fieldset 
input[type="radio"]:checked 
+ span > .icon {
	transform: scale(2);
}

button{
	background: black;
	cursor: pointer;
	border: none; 
	padding: 16px 32px;
	color: white;
	font-size: 24px;
	font-weight: bold;
	position: relative;
	border-radius: 10px;
  }
  
  button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -4;
	width: 100%;
	height:100%;
	background: linear-gradient( 60deg,
   #8f28f0, #E000B9, #2723f1, #DEA03C, #E82E20, #DEA03C, #E000B9);
	background-size: 900%;
	border-radius: 10px;
	filter: blur(8px);
	animation: glowing 20s linear infinite;
  }
  
  @keyframes glowing{
	0%{
	  background-position: 0 0;
	}
	50%{
	  background-position: 400% 0;
	}
	100%{
	  background-position: 0 0;
	}
  }

  .P1{
	font-family: 'Colonna MT';
	color: #8f28f0;

  }