@import "compass/css3";
@import url(https://fonts.googleapis.com/css?family=Quicksand);
*{
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  font-family:arial;
}
body{background:#292F33;}
h1{
  color:#262626;
  text-align:center;
  font-family: 'Quicksand';
  font-size: 30px;
}
   
.logo{
    width: 279px;
    height: 140px;
    background-image:url(./logo.png);
    background-repeat: no-repeat;
}

.login-form{
  width:350px;
  padding:40px 30px;
  background:#eee;
  @include border-radius(4px);
  margin:auto;
  position: absolute;
  left: 0;
  right: 0;
  top:20%;
  @include translateY(-50%);
}
.form-group{
  position: relative;
  margin-bottom:15px;
  font-size:20px;
}
.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:#ff1a1a;
}
.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:#339933;
  dispaly:inline-block;
  width:100%;
  font-size:16px;
  font-weight: bold;
  height:50px;
  color:#fff;
  text-decoration:none;
  border:none;
  @include border-radius(4px);
}

