@charset "utf-8";
/* CSS Document */

@import "compass/css3";
@import url(https://fonts.googleapis.com/css?family=verdana);
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: Verdana;
}
body {
 /* background: #ADD8E6; */

  background-image:url("img/fondo1.png");
 
}
h1 {
  color: #20B2AA ;
  text-align: center;
  font-family: Verdana;
  font-size: 30px;
} 
.img1 {
display:block;
margin:auto;

}
.pie {
    font-size: 12px;
    position:absolute;
    bottom:0px;
    right:45%;
}
.login-form {
  width: 350px;
  padding: 40px 30px;
  background: #eee;
  @include border-radius(4px);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
 /* top: 50%;*/
  @include translateY(-50%);
}
.form-group {
  position: relative;
  margin-bottom: 15px;
}
.form-control {
  width: 100%;
  height: 50px;
  border: none;
  padding: 5px 7px 5px 15px;
  background: #fff;
  color: #666;
  border: 2px solid #ddd;
  @include border-radius(4px);
  &:focus,
  &:focus + .fa {
    border-color: #10ce88;
    color: #10ce88;
  }
}
.form-group .fa {
  position: absolute;
  right: 15px;
  top: 17px;
  color: #999;
}
.log-status.wrong-entry {
  @include animation(wrong-log 0.3s);
}
.log-status.wrong-entry .form-control,
.wrong-entry .form-control + .fa {
  border-color: #ed1c24;
  color: #ed1c24;
}
.log-btn {
  background: #0ac986;
  dispaly: inline-block;
  width: 100%;
  font-size: 16px;
  height: 50px;
  color: #fff;
  text-decoration: none;
  border: none;
  @include border-radius(4px);
}

.link {
  text-decoration: none;
  color: #c6c6c6;
  float: right;
  font-size: 12px;
  margin-bottom: 15px;
  &:hover {
    text-decoration: underline;
    color: #8c918f;
  }
}
.alert {
  display: none;
  font-size: 12px;
  color: #f00;
  float: left;
}
@include keyframes(wrong-log) {
  0%,
  100% {
    left: 0px;
  }
  20%,
  60% {
    left: 15px;
  }
  40%,
  80% {
    left: -15px;
  }
}
