#header {
	display: none;
}

#main {
	margin-top: 0px;
}

#section {
	height: 1px;
	min-height: 100%;
	/*padding-top: 50px;*/
}


#f_index {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.fields {
	background: white;
	border: 10px solid #FF6D05;
}

.fields li {
	padding: 0px 20px;
    margin: 20px 0px;
}

.fields input {
    -moz-transition: -moz-box-shadow .7s ease-in-out .2s;
    -o-transition: -o-box-shadow .7s ease-in-out .2s;
    -webkit-transition: -webkit-box-shadow .7s ease-in-out .2s;
    transition: box-shadow .7s ease-in-out .2s;

    color: #0061A0;
}

.fields input:focus {
    -moz-box-shadow: 0 0 0.1em #E9E6E6, 0 0.8em .7em #F8F8F8 inset;
    -webkit-box-shadow: 0 0 0.1em #E9E6E6, 0 0.8em .7em #F8F8F8 inset;
    box-shadow: 0 0 0.1em #E9E6E6, 0 0.8em .7em #F8F8F8 inset;
}

.required_notification, #li_pass {
	display: none;
}

#welcome {
	text-align: center;
	padding: 20px 40px;
	background: white;
	border: 10px solid #FF6D05;
	margin-top: 50px;
}

#a_pass {
	text-decoration: none;
	color: #7F7F7F;
	font-weight: bold;
	font-size: 0.9rem;
}

#a_pass:hover {
	color: #000000;
}

#contrasena, #usuario {
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5rem;

	padding: 5px 10px;
	border: 1px solid white;
	border-bottom: 1px solid black;
}

#d_error {
	margin-top: 20px;
}

@media all and (min-height: 600px) and (min-width: 750px)   {
	
	.fields li {
		padding: 0px 100px;
	    margin: 50px 0px;
	}

	#welcome {
		padding: 40px 100px;
		margin-top: 0px;
	}
}

