


/*login*/
body{
    color:#fff;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(#cbccc8)) fixed;  
}

.login-form{
    width:350px;
    margin: 0 auto;
    padding:100px 0 30px;
}

.login-form form{
    color: #7a7a7a;
    border-radius: 2px;    
    margin-bottom: 15px;
    font-size:13px;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(#cbccc8)) fixed;
    /*background:#ececec;*/
    padding:30px;
    position: relative;
    box-shadow: 30px 30px 30px 20px rgba(0,0,0,0.3);
}

.login-form .logo{
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 170px;
    height: 115px;
    top: -70px;
}

.login-form .logo img{
    width: 100%;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
}

.login-form h2{
    font-size: 22px;
    margin: 55px 0 25px;
}

.form-control{
    min-height: 40px;
    background:#000;
    /*box-shadow:  !important;*/
    /*border-color:#FFE135;*/
    outline: none;
	border: none;
	border-bottom: 2px solid #adadad;
}

.form-control:focus{
    /*border-color:#FFE135;*/
    background:#000;
}

.btn{
    color: #000;
}

.focus-efecto {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  
  .focus-efecto::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 4px; /*ancho de la linea que hace el efecto de barra de progeso en el input al hacer foco*/
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  
    background: #6a7dfe;
    background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    background: -o-linear-gradient(left, #21d4fd, #b721ff);
    background: -moz-linear-gradient(left, #21d4fd, #b721ff);
    background: linear-gradient(left, #21d4fd, #b721ff);
  }
  
  .focus-efecto::after {    
    font-size: 15px;
    color: #999999;
    line-height: 1.2;
  
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 16px;
    left: 0px;
    padding-left: 5px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .form-control:focus + .focus-efecto::after {
    top: -15px;
  }
  
  .form-control:focus + .focus-efecto::before {
    width: 100%;
  }
  
  .has-val.form-control + .focus-efecto::after {
    top: -15px;
  }
  
  .has-val.form-control + .focus-efecto::before {
    width: 100%;
  }

/*fim do form login*/