	@import url(https://fonts.googleapis.com/css?family=Open+Sans:100,300,400,700);
@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
  
body:before {
  content:"";
  position:fixed;
  left:0;
  top:0;
  right:0;
  bottom:0;
  z-index:-1; 
  /*background:#c0c0aa;*/
  /*background: linear-gradient(to left, #c0c0aa, #1cefff) ;*/
}

body, html {
  height: 100%;
  /*background-color: #f5cd79;*/
}
body {
  font-family: 'Open Sans';
  font-weight: 100;
  overflow: hidden;
}
input {
  ::-webkit-input-placeholder {
     color: rgba(255,255,255,0.7);
  }
  ::-moz-placeholder {
     color: rgba(255,255,255,0.7);  
  }
  :-ms-input-placeholder {  
     color: rgba(255,255,255,0.7);  
  }
  &:focus {
    outline: 0 transparent solid;
    ::-webkit-input-placeholder {
     /*color: rgba(0,0,0,0.7);*/
    }
    ::-moz-placeholder {
       /*color: rgba(0,0,0,0.7);  */
    }
    :-ms-input-placeholder {  
       /*color: rgba(0,0,0,0.7);  */
    }
  }
}
.img-temp {
  max-width: 50vw;
  min-height: 100vh;
}

.img-mobile {
  max-width: 100%;
  padding: 0.3em;
}

.login-base {
  /*background: #222;*/
  box-shadow: 0 0 4rem rgba(0,0,0,0.45);
  border-radius: 0.5 0.5 0.5 0.5;
  /*min-height: 10rem;*/
  min-height: 65%;
  margin: auto;
  padding: .5rem;
  background-color: white;
  display: flex;
  max-width: 426px;
}
.login-base img {
  max-width: 30vw;
}
.divider {
  border-left: 0.2em solid #dfe6e9;
  box-shadow: 0.1rem 0 0.7rem rgba(0,0,0,0.3);
  border-radius: 35px;
}
.login-text {
  font-size: 1.5rem;
  margin: 0 auto;
  max-width: 50%;
  padding: .5rem;
  text-align: center;
  .fa-stack-1x {
    color: black;
  }
}

.login-username, .login-password {
  -webkit-appearance: none
  background: transparent;
  border: 0 solid;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  display: block;
  margin: 1rem;
  margin-bottom: 3rem;
  padding: .5rem;
  transition: background 1s ease-in;
  width: calc(100% - 3rem);
  outline: none;
} :focus {
    color: black;
    background: white;
    border-bottom: 1px solid #0fbcf9;
    transition: border-bottom 0.3s linear;
};

.login-forgot-pass {
  //border-bottom: 1px solid white;
  bottom: 0;
  color: white;
  cursor: pointer;
  display: block;
  font-size: 75%;
  left: 0;
  opacity: 0.6;
  padding: .5rem;
  position: absolute;
  text-align: center;
  //text-decoration: none;
  width: 100%;
  &:hover {
    opacity: 1;
  }
}
.login-submit {
  border: 0.2rem solid rgba(17, 153, 142, 0.6);
  outline: none;
  border-radius: 5em;
  box-shadow: 0rem 0rem 3rem rgba(0,0,0,0.5);
  background-color: #11998e;
  /*background: linear-gradient(145deg, #38ef7d , #11998e, #11998e,  #11998e, #38ef7d) ;*/
  color: white;
  font-size: 1.2em;
  display: block;
  margin: 1rem;
  margin-right: 3rem;
  min-width: calc(100% - 4rem);
  min-height: 4rem;
  padding: .25rem;
  transition: 250ms background ease-in;

  &:hover, &:focus {
    background: white;
    color: black;
    transition: 250ms background ease-in;
  }
}

@media only screen and (max-width: 768px) {
  .form-base img {
    max-width: 100%;
  }
}


@media only screen and (min-width: 768px) {
  .form-base {
    /*margin-left: 25%;
    margin-right: 0.5em;
    float: left;
    margin-top: 25%;*/
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    min-width: 50%;
    box-shadow: 0.1rem 0 0.7rem rgba(0,0,0,0.3);
    padding: 0.7em;
  }
  .login-submit {
    float:right;
    min-width: calc(100% - 30rem);
  }
}


[class*=underlay] {
  left: 0;
  min-height: 100%;
  min-width: 100%;
  position: fixed;
  top: 0;
}
.underlay-photo {
  animation: hue-rotate 6s infinite;
  background: url('https://31.media.tumblr.com/41c01e3f366d61793e5a3df70e46b462/tumblr_n4vc8sDHsd1st5lhmo1_1280.jpg');
  background-size: cover;
  -webkit-filter: grayscale(30%);
  z-index: -1;
}
.underlay-black {
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

@keyframes hue-rotate {
  from {
    -webkit-filter: grayscale(30%) hue-rotate(0deg);
  }
  to {
    -webkit-filter: grayscale(30%) hue-rotate(360deg);
  }
}