body{
  background-color: #fad9ed;
  font-family: Arial;
}

.nav-bar{
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 5em;
  position: fixed;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  background-color: white;
}

.left-header-container{
  float: left;
}

.right-header-container{
  float: right;
}

#nav-profile-popup{
  position: fixed;
  top: 4.7em;
  right: 1em;
  background-color: white;
  border: 1px solid #d4d4d4;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  width: 12em;
}

.nav-profile-option{
  position: relative;
  margin: 0.5em 0;
  padding: 0.5em 1em;
  box-sizing: border-box;
  width: 100%;
  color: black;
  text-decoration: none;
}

.nav-profile-option:hover{
  background-color: #e8e8e8;
}

#nav-profile-popup a, #nav-profile-popup a{
  text-decoration: none;
}

#home-icon{
  width: 4em;
  height: 4em;
  margin: 0.5em 2em;
}

#user-avatar{
    width: 4em;
    height: 4em;
    margin: 0.5em 2em;
    border-radius: 2em;
    background-color: black;
}

#login{
    width: 4em;
    height: 4em;
    margin: 0.5em 2em;
}

.content{
  left: 2em;
  right: 2em;
  margin-top: 4em;
  padding-top: 1.5em;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  background-color: white;
  min-height: 88vh;
}

.login-signup-form-container{
  margin: 8em auto;
  padding: 2em 4em;
  font-size: 1em;
  display: flex;
  width: 50em;
}

.login-form-container{
  margin: 1em 2em;
  padding: 1em 1em;
  width: auto;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  background-color: white;
  border-radius: 2px;
  display: inline-block;
}

.error-message{
  background-color: rgba(255, 0, 0, 0.5);
  border: 1px solid #a00000;
  border-radius: 4px;
  padding: 0 1.5em;
  margin-top: 0.5em;
}

.success-message{
  background-color: rgba(0, 255, 0, 0.5);
  border: 1px solid #00a000;
  border-radius: 4px;
  padding: 0 1.5em;
  margin-top: 0.5em;
}

.login-signup-form-container button{
  background-color: #4fdcff;
  border-radius: 4px;
  padding: 1em;
  border: 1px solid #47beed;
  font-size: 1em;
  float: right;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  outline: none;
}

.login-signup-form-container button:hover{
  background-color: #47beed;
}

.login-signup-form-container button:active{
  background-color: #43a9d1;
}

.login-signup-form-container input{
  background-color: white;
  border-radius: 4px;
  padding: 0.5em;
  font-size: 1em;
  border: 1px solid #808080;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

.content-center{
  width: 56vw;
  margin: 0 auto;
}
