body {
  color: #999;
  background: #f5f5f5;
  font-family: 'Varela Round', sans-serif;
}
.form-control {
  box-shadow: none;
  border-color: #ddd;
}
.form-control:focus {
  border-color: #4aba70; 
}
.login-form {
  width: 350px;
  margin: 0 auto;
  padding: 30px 0;
}
.login-form input.logininput{
  width: 125.5%;
}
.login-form div.logotipo img{
  height: 80px;
  padding: 10px 0px;
}

@media only screen and (max-width: 480px) {
  .login-form {
    width: 280px;
    margin: 0 auto;
    padding: 30px 0;
  }
  .login-form input.logininput{
    width: 100%;
  }
  .login-form div.logotipo img{
    height: 70px;
  }
}
.login-form form {
  color: #434343;
  border-radius: 1px;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  padding: 30px;
  background: rgba(237,237,237,1);
  background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,237,237,1)), color-stop(100%, rgba(255,255,255,1)));
  background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
  background: -o-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
  background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0 ); 
}
.login-form h4 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.login-form h5 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
.login-form .logotipo {
  margin: 0 auto 20px;
  text-align: center;
}
.login-form .avatar {
  color: #fff;
  margin: 0 auto 30px;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 9;
  background: #4aba70;
  padding: 15px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.login-form .avatar i {
  font-size: 62px;
}
.login-form .form-group {
  margin-bottom: 20px;
}
/*.login-form .form-control, .login-form .btn {
  min-height: 40px;
  border-radius: 2px; 
  transition: all 0.5s;
}*/
.login-form .close {
  position: absolute;
  top: 15px;
  right: 15px;
}
/*.login-form .btn {
  background: #ce101b;
  border: none;
  line-height: normal;
}
.login-form .btn:hover, .login-form .btn:focus {
  background: #ce101b8c;
}*/ 
.login-form .checkbox-inline {
  float: left;
}
.login-form input[type="checkbox"] {
  margin-top: 2px;
}
.login-form .forgot-link {
  float: right;
}
.login-form .small {
  font-size: 13px;
}
.login-form a {
  color: #4aba70;
}

.image-preview-input {
  position: relative;
  overflow: hidden;
  margin: 0px;    
  color: #333;
  background-color: #fff;
  border-color: #ccc;    
}
.image-preview-input input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.image-preview-input-title {
  
}

.register-form {
  border-radius: 10px 10px 10px 10px; 
}

i {
     width: 13px;
     display:block;
}
/*-----------------------------------------------------------*/
#pswd_info {
  font-size:12px;
}
#pswd_info h4 {
  margin:0 0 10px 0;
  padding:0;
  font-weight:normal;
  font-size:12px;
}
.invalid {
  color:#ec3f41;
  list-style:none;
  text-align:left;
}
.valid {
  color:#3a7d34;
  list-style:none;
  text-align:left;
}
#opciones{
  width: 230px;
  margin: auto;
}
/*-----------------------------------------------------------*/

.loader{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/loading.gif') 50% 50% no-repeat;
    /*-webkit-animation-name: rotate; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: infinite;*/
    color: #fff0;
}

@-webkit-keyframes rotate {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}

@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}