@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);
    *:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  background: #DDD;
  font-size: 16px;
  color: #222;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  overflow:auto;
  height:100%;
}

#login-box {
  position: relative;
  margin: 5% auto;
  width: 340px;
  background: #FFF;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.left {
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 40px;
}

h1 {
  margin: 0 0 20px 0;
  font-weight: 300;
  font-size: 28px;
}

input[type="text"],
input[type="password"],h4{
  display: block;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 4px;
  width: 250px;
  height: 32px;
  border: none;
  border-bottom: 1px solid #AAA;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  transition: 0.2s ease;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-bottom: 2px solid #16a085;
  color: #16a085;
  transition: 0.2s ease;
}

.sign_up_errors{
    border-bottom: 2px solid #ff4444;
    color: #ff4444;
    transition: 0.2s ease;
}

input[type="submit"] {
  width: 120px;
  height: 32px;
  background: #16a085;
  border: none;
  border-radius: 2px;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.1s ease;
  cursor: pointer;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
  opacity: 0.8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: 0.1s ease;
}

input[type="submit"]:active {
  opacity: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: 0.1s ease;
}

.loader {
    position: absolute;
    right:0px;
    bottom: 20px;
    border: 6px solid #eee;
    border-radius: 50%;
    border-top: 6px solid #16a085;
    width: 14px;
    height: 14px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    display:none;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.eusername,.eemail,.epassword,.epassword2,.edisplay{
    display:none;
    top:107px;
    border:0;
    font-size:12px;
    color: #d40000;
}
.edisplay{
    top:160px;
}
.eemail{
    top:212px;
}
.epassword{
    top:264px;
}
.epassword2{
    top:314px;
}
#login_epassword_err{
    top:170px;
}

.forgot{
    font-weight: 300;
    font-size: 1.6vh;
    bottom:0;
    display:block;
    margin-top:10px;
    outline:0;
    text-decoration: none;
}