input:-webkit-autofill::first-line
{
	font-size: 17px;
	font-family: 'Lato';
}

.t-center
{
	text-align: center;
}

.logo_link img
{
	display: inline-block !important;
}

.paso2, .volver, .recuperar, .enviado
{
	display: none;
}

.enviado
{
	padding-top: 27px;
	font-size: 15px;
}

.volver
{
	color: #666;
    margin: 20px auto 0;
}

textarea:focus, input:focus
{
    outline: none;
}

input:-webkit-autofill
{
	-webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-animation-name: onAutoFillStart;
    animation-name: onAutoFillStart;
    font-size: 17px;
}

.ladda-button[data-style=slide-up][data-loading] .ladda-spinner
{
	margin-top: -11px;
}

.hidden
{
	display: none !important;
    visibility: hidden !important;
}

.button,.btn
{
	display: inline-block;
	cursor: pointer;
	border: none;
	color: #fff;
	padding: 10px 20px;
	background: var(--main-color);
	font-size: 14px;
	
	border-radius: 35px;
	-moz-border-radius: 35px;
	-webkit-border-radius: 35px;
	
	transition:all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-webkit-transition:all 0.2s ease-in;
	outline:none;
}

.button:hover,.btn:hover
{
	background: var(--second-color);
}

a
{
	color: #333;
	text-decoration: none;

	transition:all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-webkit-transition:all 0.2s ease-in;
}

a:hover
{
	color: var(--main-color);
}






html
{
	height: 100%;
}

body
{
	margin: 0;
	height: 100%;
	background: #FBFBFB;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	color: #333;
}

*
{
	font-family: 'Lato', sans-serif;
}

.bg
{
	position: absolute;
	background: var(--main-color);
	height: 55%;
	width: 100%;
	z-index: -1;
	top: 0;
}

.wrap
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.content
{
	width: 450px;
	margin-top: -15px;
}

.content img
{
	display: block;
	margin: 0 auto -12px;
}

h2
{
	background: var(--main-color);
	color: #fff;
	font-weight: 300;
	font-size: 24px;
	text-align: center;
	margin-bottom: 25px;
}

h2.log_titulo.light
{
	color: #222;
}

.box
{
	background: #fff;
	padding: 60px 80px;
	border: 1px solid #eee;
	min-height: 305px;
	max-height: 305px;

	-webkit-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);

	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.box label
{
	width: 100%;
	position: relative;
    top: 25px;
    font-size: 17px;
    height: 35px;
    color: #aaa;
    cursor: text;

	-webkit-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.box label.active
{
	color: #777;
	font-size: 14px;
	top: 0;
}

.box .input
{
	min-height: 55px;
}

.box input
{
	width: 100%;
	padding: 5px 0;
	margin-top: 2px;
    display: block;
    border: 0;
    border-bottom: solid 1px #bbb;
    border-radius: 0;
    background: none;
    font-size: 17px;
    color: #333;

    -webkit-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}

.box input.alert
{
	border-bottom-color: red;
}

.box input.alert:focus
{
	border-bottom: solid 2px red;
}

.box input:not(.alert):focus
{
	border-bottom: solid 2px #3483FA;
}

.box button
{
	width: 100%;
	font-size: 16px;
	padding: 11px 0;
	margin: 30px 0;
}

.box a
{
	display: table;
	text-align: center;
	margin: 0 auto;
	color: #666;
}



@media (max-width: 490px)
{
	.content
	{
		width: 100%;
	}

	.box
	{
		border-radius: 0;
    	padding: 60px 30px;
    	-webkit-box-shadow: none;
		box-shadow: none;
	}

	.content img
	{
		width: 100px;
	}

	.content h2
	{
		font-size: 21px;
	}
}


@media (min-width: 768px) and (max-width: 991px)
{
	.bg
	{
		height: 50%;
	}

	.wrap
	{
		height: 90%;
	}
}