@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");

@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700");

*{
	margin:0; 
	padding:0;
}

body{
	font-family:'Source Sans Pro', sans-serif;
	/* background: linear-gradient(rgba(82, 175, 228, 0.8) 100%, rgba(16, 73, 144, 0.73) 100%), url(../img/fondo.jpg) no-repeat; */
	background: -moz-linear-gradient(rgba(82, 175, 228, 0.8) 100%, rgba(16, 73, 144, 0.73) 100%), url(../img/fondo.jpg) no-repeat;
	background: -webkit-linear-gradient(rgba(82, 175, 228, 0.8) 100%, rgba(16, 73, 144, 0.73) 100%), url(../img/fondo.jpg) no-repeat;
	background: -o-linear-gradient(rgba(82, 175, 228, 0.8) 100%, rgba(16, 73, 144, 0.73) 100%), url(../img/fondo.jpg) no-repeat;
	background: -ms-linear-gradient(rgba(82, 175, 228, 0.8) 100%, rgba(16, 73, 144, 0.73) 100%), url(../img/fondo.jpg) no-repeat;
	background-size: auto;
	background-image: url(../img/fondo.jpg);
}

.form{
	width: 350px;
	margin:100px auto 0;
	position: relative;
	box-shadow: 1px 1px 7px 2px rgba(255, 255, 255, 0);
}

form#frm_login {
    margin: 1.5em 0;
}

/*.form:before {
    content: '+';
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: -0.8em;
    left: -0.4em;
    font-size: 2.7em;
}

.form:after {
    content: '+';
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: -0.8em;
    right: -0.4em;
    font-size: 2.7em;
}*/

.header{
	height:auto; 
    background-color: #fff0;
    text-align: center;
    border-top: 3px solid #cae5f600;
    position: relative;
}

/*.header:after {
    content: '+';
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -0.9em;
    right: -0.4em;
    font-size: 2.7em;
}

.header:before {
    content: '+';
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -0.9em;
    left: -0.4em;
    font-size: 2.7em;
}*/

.header p{
	color: white;
    display: inline-block;
    margin-top: 39px;
    font-size: 17px;
    vertical-align: top;
    position: relative;
    left: -20px;
    float: right;
}

.header .logo{
    height: 100%;
    width: auto;
    padding: 2em 1em;
}

.login{
    padding: 1em 1em;
    background-color: #ffffffeb;
    overflow: hidden;
    border-top: 3px solid #cae5f600;
    border-radius: 10px;
}

.login span.un{
	width: 10%;
    text-align: center;
    color: #939598;
    border-radius: 3px 0 0 3px;
    padding: 0px 0.2em;
}


li.user,
li.password {
    position: relative;
}

li.user:before {
    content: '\f007';
    position: absolute;
    font-family: FontAwesome;
    font-size: 1.5em;
    top: 6.5px;
    left: 7px;
    color: #877672;
}

li.password:before {
    content: '\f084';
    position: absolute;
    font-family: FontAwesome;
    font-size: 1.5em;
    top: 6.5px;
    left: 7px;
    color: #877672;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    rgba(0, 0, 0, 0.3);
    font-weight: bolder
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    rgba(0, 0, 0, 0.3);
    font-weight: bolder
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    rgba(0, 0, 0, 0.3);
   font-weight: bolder
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    rgba(0, 0, 0, 0.3);
   font-weight: bolder
}

::-ms-input-placeholder { /* Microsoft Edge */
   color:    rgba(0, 0, 0, 0.3);
   font-weight: bolder
}


.text{
    width: 90%;
    border-radius: 0.3em;
    border: none;
    outline: none;
    color: #939598;
    font-family: 'Source Sans Pro', sans-serif;
    padding-left: 2em;
}

.text,.login span.un{
	display: inline-block;
	vertical-align: top;
	height: 2.5em;
	line-height: 2.3em;
	background: #fff;
	font-size: 1em;
	color: #000;
	box-shadow: inset 1px 1px 2px 1px rgba(0, 0, 0, 0.18);
}

label {
    font-family: sans-serif;
}

.btn {
    padding: 0.5em 0;
    border: none;
    width: 99%;
    outline: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1em;
    color: #eee;
    /* border-bottom: solid 3px #2188ca; */
    border-radius:0px;
    cursor: pointer:;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.3);
}

#loginbtn {
    background: #877672;
}

#loginbtn:hover {
    background: #665A57;
}

#recuperarbtn {
    background: #ec6851;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

#recuperarbtn:hover {
    background: #BD5248;
}

a.link {
    width: 98%;
    display: block;
    text-align: center;
    vertical-align: baseline;
    color: #231F20;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    box-shadow: inset 0px 0px 1.5px 0.5px rgb(35, 31, 32);
    border-radius: 5px;
}
a.link2 {
    width: 98%;
    display: block;
    text-align: center;
    vertical-align: baseline;
    color: #231F20;
    text-decoration: none;
    /*background-color: rgba(255, 255, 255, 0.4);*/
    /*padding: 10px 0;*/
    /*box-shadow: inset 0px 0px 1.5px 0.5px rgb(35, 31, 32);*/
    border-radius: 5px;
}

a.link:hover, a.link2:hover {
    text-decoration: underline;
}


ul li{
	height:55px; 
	/*margin:15px 0; */
	list-style:none;
}

#frm_login > ul > li:nth-child(4) {
    margin-bottom: 0 !important;
}

#frm_login > ul > li:nth-child(5) {
    margin: 0;
}

.span{
	display:table; 
	width:100%; 
	font-size:14px;
;
}

.ch{
	display:inline-block; 
	width:49%; 
	color:#FFF;
}

.ch a{
	color:#FFF; 
	text-decoration:none;
}

.ch:nth-child(2){
	text-align:right;
}

li:nth-child(3) {
    height: 20px;
}

.fa-user:before,
.fa-key:before {
    font-size: 1.5em;
    vertical-align: middle;
}

#frm_login > ul > li:nth-child(3) > div > a {
    color: #ccc;
}

@media(max-width:340px){
 .header .logo{
    height: 95%;
    margin: 1.5em 0 0 5%;
}
.text{
	width: 76%;
}
body > div > div.login > form > ul > li:nth-child(3) > div > span:nth-child(1) {
    width: 40%;
}
#frm_login > ul > li:nth-child(4) {
    margin-top: 30px;
}
body > div > div.login > form > ul > li:nth-child(3) > div > span:nth-child(2) {
    width: 56%;
}
.form{
	margin-top: 50px;
}
}

@media(max-width:480px){
 .form{
 	width:100%;
}
#frm_login > ul > li:nth-child(4) {
    margin-top: 30px;
}
}


