html{
  font-family: Helvetica;
  background-color: #EEE7D7;
}

/*Top bar at login page*/

.login-banner{
  background-color: #18325B;
  border-bottom: 1px solid #939393;
  margin-bottom: 20px;
  color: #FFF;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.login-footer{
  background-color: #18325B;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  box-sizing: border-box;
  padding: 10px 0;
  margin-top: 20px;
}

#outer-content{
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  width: 500px;
  margin: 0 auto;
  background: #FFF;
}

#content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;    
  width: 500px;
  margin: 0 auto;
  max-width: 100%;
  background: #EEE7D7; 
  box-sizing: border-box;
  padding: 50px 0;
  
}

#content img{
  width: 40%;
  box-sizing: border-box;
  padding: 5px;
  margin-bottom: 50px;
}

#content h3{
  color: #000;
  font-size: 1.6em;
  font-family: Helvetica;
}

#content form{
  display: flex;
  flex-direction: column;
  /*margin-bottom: 80px;*/
}

#content form input{
  margin-bottom: 10px;
}

#content form input:nth-child(1), #content form input:nth-child(2){
  /*border: none;*/
  /*background: transparent;*/
  /*border-bottom: 1px solid #FFF;*/
  color: #000;
  font-size: 1.2em;
}

/* When focus remove borders*/

#content form input:nth-child(1):focus, #content form input:nth-child(2):focus{
  outline:none;
  caret-color: #000;
}
#content form input:nth-child(1)::placeholder, #content form input:nth-child(2)::placeholder {
  color: #000;
  opacity: 1;
  box-sizing:border-box;  
}


#content form input:last-child{
  box-sizing: border-box;
  cursor: pointer;
  padding: 10px 5px;
  width:30%;
  font-weight: bold;
  border: 1px solid #000;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
  margin-top: 15px;
  background-color: white;
}

#content form input:last-child:hover{

}

#content a{
  color: #000;
  text-decoration: none;
  margin-top: 40px;
  font-weight: bold;
}

#browser-msg{
  color: red;
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}

/*Login error messages*/
.errors{
  width: 50%;
  margin: 0 auto;
  text-align: center;
  color: red;
  font-weight: bold;
}

.errors ul{
  list-style-position: inside;
}

footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}


/*Forgot Password Styles Start*/
  .forgot_password_div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #forgot_password_form{
    display: flex;
    flex-direction: column;
  }
  #forgot_password_form input:first-child{
    margin: 30px 0;
  }
  #forgot_password_form input:last-child{
    width: 50%;
    margin: 0 auto;
  }

 #reset_password_form{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 } 
form#reset_password_form input:nth-child(2){
  margin: 15px 0;
}
form#reset_password_form input:last-child{
  margin: 15px 0;
}

#back_home{
  margin-left: 30px;
}

  /*Forgot Password Styles End*/