
/*--------------------------------------------------------------
# login
--------------------------------------------------------------*/

.icon-ojover:before { content: "\ef24"; font-size:24px; line-height:24px; }
.icon-ojonover:before { content: "\ef22"; font-size:24px; line-height:24px; }

.login-form {
	max-width: 350px;
	margin: auto;
	/*padding: 30px;
	background: rgba(255,255,255,0.5);
	border-radius: 2px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.1);*/
	font-family: 'Segoe UI', sans-serif;
}

.login-form h2 {
	text-align: center;
	margin-bottom: 20px;
	color: var(--rojo);
	font-size: 18px;
}

.login-form input {
	font-size: 16px;
	color: #000;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--gris6);
}
.login-form input::placeholder { color: #fff; }

.login-form button.logeo {
	font-size: 16px;
	font-weight: normal;
	margin-top: 25px;
}

button.login-eye {
	display: block;
	background: none;
	color: var(--naranja);
	font-weight: bold;
	box-shadow: none;
	padding: 8px 10px;
	margin: -10px auto 0;
	}
button.login-eye:hover { background: none; }

.custom-checkbox {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	font-size: 14px;
	user-select: none;
	display: inline-block;
	color: var(--gris);
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.custom-checkbox .checkmark {
	position: absolute;
	top: 50%;
	left: 0;
	height: 18px;
	width: 18px;
	background-color: var(--alfa);
	border: 1px solid var(--gris6);
	border-radius: 3px;
	transform: translateY(-50%);
}

.custom-checkbox:hover .checkmark {
	background-color: var(--gris9);
}

.custom-checkbox input:checked ~ .checkmark {
	background-color: var(--naranja);
	border-color: var(--amarillo);
}

.custom-checkbox .checkmark::after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 4px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark::after {
	display: block;
}






