* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html, body {
    width: 100%;
    height: 100%;
    background: url(../images/login-bg.jpg) no-repeat center center fixed;
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;    
}
.login {
    position: relative;
    top: 25%;
    background:rgba(255,255,255,0.4);
    border-radius: 4px;
}
.login .fa{
  color: #F00;
}
.intro {
    position: relative;
    top: 25%;
    color: #FFF;
}
.intro .intro-logo{
  width: 65%;
  border-radius: 100px;
  padding: 25px 50px;
  background:rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.register {
    position: relative;
    top: 10%;
    background:rgba(255,255,255,0.4);
    border-radius: 4px;
}
.login-container, .login-container .row, .login-container .col-md-4{
    height: 100%;
}
.login .alert{
  margin: 0 20px;
}
.register .alert{
  margin: 6px 20px 15px 20px;
}
.legend {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
    width: 100%;
    display: block;
    background: rgba(255,255,255,0.75);
    padding: 15px 25px;
    color: #F00;
    font-size: 20px;
}
.legend:after {
  content: "";
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: 275px -20px;
  opacity: 0.06;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.input {
  position: relative;
  width: 90%;
  margin: 15px auto;
}
.input span {
  position: absolute;
  display: block;
  color: #d4d4d4;
  left: 10px;
  top: 8px;
  font-size: 20px;
}
.input input {
    width: 100%;
    padding: 10px 5px 10px 40px;
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: 0.2s ease-out;
    color: #F00;
    /* background: rgba(255,255,255,0.7); */
}
.input input:focus {
  padding: 10px 5px 10px 10px;
  outline: 0;
  border-color: #F00;
}
.submit {
  width: 45px;
  height: 45px;
  display: block;
  margin: 0 auto -15px auto;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #F00;
  color: #F00;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;
}
.submit:hover,
.submit:focus {
  background: #F00;
  color: #fff;
  outline: 0;
}