@CHARSET "ISO-8859-1";

::selection {
	/* Cambia el color cuando seleccionamos una palabra */
	/*background: #0b5ed7;*/
	background: #03376b;
	color: white;
}

::-moz-selection {
	/* Cambia el color cuando seleccionamos una palabra FIREFOX */
	background: #03376b;
	color: white;
}

/* ---------------------------- Cambiar Barra Derecha Navegadores (Excepto Firefox) ---------------------------- */
body::-webkit-scrollbar {
	width: 6px;
}

body::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
	background-color: #034892;
	outline: 1px solid #00305f;
}

.header {
	min-height: 12.5vh;
	background-color: #ffffff;
	border-bottom: 20px solid #022F5B;
	padding: 15px;
}

.header,
.logo {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
	text-align: center;
	padding: 0;
	user-select: none;
}

.header .logo .imglogo {
	float: none;
	margin: 5px auto;
	height: 6.5vh;
}

.form-control {
	margin-bottom: 20px;
	border: 1px solid #787878;
	border-radius: 1px;
}

.form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #03488F;
	outline: 0;
	box-shadow: 0 0 0 0.1rem #022f5bde;
}

.container {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.form-horizontal {
	width: 75%;
}

.btn-primary {
	border-radius: 7.5px;
	font-weight: 500;
	background-color: #03488F;
	border-color: #013970;
	padding: 6.5px 40px;
}

.btn-primary:focus,
.btn-primary:hover {
	background-color: #002b57;
	border-color: #00254b;
}

.footer {
	background-color: white;
	min-height: 12.5vh;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	user-select: none;
}

.footer p {
	margin-bottom: 5px;
}

.a-footer {
	text-decoration: none;
	color: black;
}

.a-footer:hover {
	text-decoration: none;
	color: #022F5B;
}

input {
	accent-color: #03488f;
}

@media (min-width: 768px) {
	.header {
		/* background:url(../images/bg-2000-home.jpg) no-repeat center 0 !important; */
		background-color: rgb(255, 255, 255);
		border-bottom: 25px solid #022F5B;
	}

	.header .logo .imglogo {
		margin: -10px 12px 0 150px;
		vertical-align: middle;
		border: 0;
	}

	.form-horizontal {
		width: 40%;
	}

	.form-horizontal2 {
		width: 75%;
	}

	.div-a-forgotten {
		padding-bottom: 0;
	}
}



@media screen and (max-width: 767px) {}