/* Contenedor A4 */
.hoja-a4 {
	width: 210mm;
	height: 297mm;
	margin: 0 auto;
	background: white;
	padding: 20mm;
	box-sizing: border-box;
}

/* Contenedor para los dos carnets */
.contenedor-carnets {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

/* Estilo para cada carnet */
.carnet{
	width: 327px; /**363**/
	height: 204px;
	border: 1px solid #000;
	background-image: linear-gradient(#B3E5FC, #fff, #B3E5FC);
}

/****frente******/

.logo-frente{
	width:50px;
}

.siglas{
	font-size: 22px;
	color: #000;
}

.numero-de-afiliado , .nombres-afiliados{
	color: #000;
}

.foto-carnet{
	width: 94px;
	height: 94px;
	background-color: #ccc;
}

.fondo-frente{
	background-image: url("http://localhost/carnet/frente.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.texto-frente{
    font-size:9px;
}


/*** dorso****/

.fondo-dorso{
	background-image: url("http://localhost/carnet/dorso.png");
	background-repeat: no-repeat;
	background-size: cover;
}


.img-dorso{
	width: 240px;
}

.texto-dorso{
	font-size: 7px;
	color: #000;
}
