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;
}

.ladda-button[data-style=slide-up][data-loading] .ladda-spinner
{
	margin-top: -11px;
}

.clear:before, .clear:after
{
	display:table;
	content:" ";
}

.clear:after
{
	clear:both;
}

.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: 50%;
	width: 100%;
	z-index: -1;
	top: 0;
}

.wrap
{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.content
{
	width: 700px;
}

.content .logo
{
	float: right;
	width: 140px;
	margin-top: -60px;
}

.content .logo img
{
	width: 100%;
}

.content p
{
	float: left;
    text-align: right;
    width: 510px;
    font-size: 12px;
    color: #888;
    margin: 38px 0 0;
    padding-left: 40px;
    box-sizing: border-box;
}

.content p a
{
	color: #666;
}

.content p a:hover
{
	color: #222;
}

.content button
{
	float: right;
	font-size: 16px;
	padding: 12px 35px;
	margin-top: 30px;
}

h2
{
	background: var(--main-color);
	color: #fff;
	font-weight: 400;
	font-size: 25px;
	margin-bottom: 25px;
}

h2.log_titulo.light
{
	color: rgba(0,0,0,.7);
}

.box
{
	background: #fff;
	padding: 40px;
	border: 1px solid #eee;

	-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;
    line-height: 21px;
    height: 35px;
    margin-bottom: 10px;
    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-6
{
	float: left;
	width: 50%;
	height: 85px;
	margin-bottom: 10px;

	box-sizing: border-box;
}

.box .input-6.pr
{
	padding-right: 15px;
}

.box .input-6.pl
{
	padding-left: 15px;
}

.box .input-12
{
	float: left;
	width: 100%;
	height: 85px;
	margin-bottom: 10px;
}

.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;
    opacity: 0;

    -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;
}

.esperar
{
	margin: 15px 0 25px;
	line-height: 1.4em;
}



@media (max-width: 490px)
{
	.wrap
	{
		display: block;
	}

	.content
	{
		width: 100%;
	}

	.box
	{
		border-radius: 0;
    	padding: 40px 30px;
    	-webkit-box-shadow: none;
		box-shadow: none;
	}

	.box .input-6
	{
		float: none;
		padding: 0 !important;
		width: 100%;
		height: auto;
		margin-bottom: 25px;
	}

	.content .logo
	{
		display: none;
	}

	.content h2
	{
		font-size: 23px;
		text-align: center;
		font-weight: 500;
	}

	.content p
	{
		width: auto;
	    text-align: center;
	    margin: 25px 0;
	    padding: 0 20px;
	}

	.content button
	{
		display: block;
		float: none;
		margin: 40px auto 70px;
	}
}


@media (min-width: 768px) and (max-width: 991px)
{
	.bg
	{
		height: 45%;
	}

	.wrap
	{
		height: 90%;
	}
}