:root {
	--enfocado: #66afe9;
	--enlace: rgb(0, 111, 201); 
	--sombreado: rgb(235, 235, 235);
}

* {
	box-sizing: border-box;
}

html,

body {
	display: flex;
	margin: 0;
	height: 100vh;
	font-size: 16px;
	font-family: "Segoe UI", sans-serif;
	line-height: 1.4;
	color: #333;
	background-color: #fff;
	justify-content: center;
	align-items: center;
}

.nombre {
	margin-bottom: 0;
	color: #7d7d7d;
	font-weight: normal;
}

/* Captura unilínea */
.captura {
	width: 100%;
	height: 24px;
	padding: 0px;
	font-size: 16px;
	border: 0;
	border-bottom: 1px solid rgb(204, 204, 204);
}

.captura:focus {
	border-bottom: 2px solid var(--enfocado);
	outline: none;
}

.captura__ver {
	display: inline-block;
	position: absolute;
	right: 3px;
	top: 5px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	background-size: contain;
	background-image: url('/inicio/imagenes/ver.png');
}

.captura__ver:hover {
	background-color: var(--sombreado);
}

.boton {
	width: 100%;
	height: 100%;
	border-radius: 5px 5px;
	color: var(--enlace);
	font-size: 16px;
	border: none;
	background-color: white;
	cursor: pointer;
}

.boton:hover {
	background-color: #f9f9f9;
	box-shadow: 0px 0px 3px #cdcdcd;
}

.aviso {
	width: 310px;
	height: 28px;
	color: #721c24;
	background-color: #f8d7da;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
}