*{
	margin: 0;
	padding: 0;
	font-family: "arial";
}

body{
	background: url("../Img/Fondo.png") repeat center;
	background-size: 100%;
	--EspacioParrafo: 10px;
	--ColorGris: #F2F3F4;
	--ColorGris1: #c4c4c4;
	--ColorAzulB: #EBF5FB;
	--ColorAzulF: #5DADE2;
}

.Contenedor{
	margin: 0 auto;
	margin-top: 73px;
	padding: 10px;
	box-shadow: 0px 0px 3em 0px #fff;
	width: 60%;
	background-color: #fff;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

	.SubContenedor, .SubContenedor1{
		padding: 10px;
		margin: 10px;
		background-color: #fff;

		flex-grow: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

		h2{
			margin-bottom: 20px;
		}

	.SubContenedor{
		border-right: 1px solid var(--ColorGris1);
	}

	.SubContenedor::affter{
		width: 100px;
		height: 100px;
		background-color: #fff;
		border-radius: 50%;
		border: 1px solid #000;
	}

	.SubContenedor1{
		display: flex;
		flex-direction: column;
		align-items: center;
	}

		input[type="text"], input[type="password"], input[type="submit"],
		input[type="checkbox"]{
			border-top-style: none;
			border-right-style: none;
			border-left-style: none;
			border-bottom: 1px solid var(--ColorGris1);
			margin: 10px;
			background-color: #fff;
			padding: 6px;
			font-size: 14px;
		}

		input[type="text"]:hover, input[type="password"]:hover,
		input[type="text"]:focus, input[type="password"]:focus{
			background-color: #fff;
			outline: none;
		}

		input[type="submit"]{
			display: block;
			margin: 0 auto;
			transition: 300ms all ease;
			border-radius: 6px;
			border-color: #85C1E9;
			box-shadow: 0px 5px 10px 0px #888;
			font-size: 14px;
			font-weight: bold;
			text-shadow: 0px 0px #000, 0px 0px 6px var(--ColorAzulF), 0px 0px 9px var(--ColorAzulF);
			border-color: var(--ColorAzulF);
		}

		input[type="submit"]:hover{
			cursor: pointer;
			background-color: #85C1E9;
			transition: 300ms all ease;
			background-color: var(--ColorAzulF);
			text-shadow: 0px 0px #000, 0px 0px 6px var(--ColorAzulB), 0px 0px 9px var(--ColorAzulB);
		}

		.Submit2{
			margin-top: 30px;
		}

		input[type="radio"]{
			margin-bottom: 30px;
			margin-left: 14px;
		}

		#IdTexto, #IdTexto1{
			width: auto;
			text-align: center;
			color: #ff0000;
			margin-bottom: 19px;
		}

		.TextoVisto{display: inline;}
		.TextoVistoF{display: none;}

@media screen and (max-width: 830px){
	.Contenedor{
		flex-direction: column;
	}

		input[type="radio"]{
			margin-bottom: 20px;
		}

		.SubContenedor{
			border: 0;
			border-bottom: 1px solid var(--ColorGris1);
		}

			.Submit{
				margin-top: 26px;
				margin-bottom: 26px;
			}

			.Submit2{
				margin-top: 26px;
			}
}