:root {
    --saw-gray-lightest: #FFFFFF;
    --saw-yellow-normal: #EDDD2C;
    --saw-red-normal: #e50000;
}

body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
}

#top {
    width: 100%;
    background-color: #177856;
    background-image: linear-gradient(to left bottom, #93f9b9 0%, #1d976c 55%);
    height: 350px;
    text-align: center;
}

#top-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

#top-text{
    height: 300px;
    width: 875px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 50px;
    margin-left: 100px;
    color: var(--saw-gray-lightest);
}

#top-text-mobile{
  margin-top: 5px;
  color: #fff;
  display: none;
}
.top-text-large{
  font-family: 'Merriweather', serif;
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 15px;
}
.top-text-medium{
  font-family: 'Merriweather', serif;
  font-size: 45px;
  margin-bottom: 25px;
}
.top-text-small{
  font-size: 20px;
}
#nav-bar{
  background-color: #DDD;
  width: 100%;
  height: 55px;
}
#nav-bar-content{
  width: 1300px;
  margin: auto;
}
#nav-bar-brand{
  margin-left: 70px;
  margin-top: 3px;
}
#nav-bar-buttons{
  float: right;
  margin-top: 6px;
}
.button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #19865F;
  color: #fff;
  font-size: 18px;
  height: 40px;
  min-width: 100px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 3px;
  margin-right: 3px;
  padding: 0;
}
#error-bar{
  background-color: var(--saw-red-normal);
  width: 100%;
  text-align: center;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  cursor: pointer;
  display: none;
  font-size: 20px;
}
#middle{
  width: 100%;
}
#middle-content{
    width: 1300px;
    margin: 50px auto;
}
h1{
  font-size: 44px;
  margin: 0 0 10px 0;
  font-weight: bold;
  color: #777;
}
label{
  color: #767676;
  font-weight: bold;
  font-size: 20px;
}
.field-validation{
    margin: 5px;
    font-size: 19px;
    color: var(--saw-red-normal);
    display: none;
}
.text-input{
  width: 300px;
  height: 40px;
  background-color: #FFF;
  border: 2px solid #AAA;
  border-radius: 10px;
  text-align: center;
  margin: 5px 0;
  font-size: 20px;
}
.text-input:focus{
  border: 2px solid #1d976c;
}
#password-meter{
    margin: 0 0 20px 0;
}
#password-meter-title{
    font-size: 20px;
    font-weight: bold;
}
.password-requirement{
    margin: 5px 0;
    font-size: 20px;
    color: var(--saw-red-normal);
}
.p-left{
    text-align: left;
}
.red{
    color: var(--saw-red-normal);
}
.green{
    color: #19865F;
}
#custom-top-wrapper{
    width: 1300px;
    margin: auto;
    text-align: left;
}
#custom-top-logo{
    max-width: 650px;
    max-height: 350px;
}
#custom-top-link-container{
    width: 475px;
    float: right;
    margin-top: 50px;
}
#custom-top-link-container > a{
    font-size: 28px;
    font-weight: bold;
}

.message-bar {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    display: none;
    font-size: 1.1rem;
}

.warn {
    background-color: var(--saw-yellow-normal);
    color: var(--saw-blue-darker);
}

@media (max-width: 1300px) {
  #top{
    height: 200px
  }
  #top-img{
    height: 150px;
    width: 150px;
    margin-top: 5px;
  }
  #top-text{
    display: none;
  }
  #top-text-mobile{
    display: block;
  }
  #nav-bar{
    height: unset;
  }
  #nav-bar-content{
    width: 100%;
    text-align: center;
  }
  #nav-bar-brand{
    display: none;
  }
  #nav-bar-buttons{
    float: unset;
    margin: auto;
    padding-top: 6px;
  }
  .button{
    margin-bottom: 6px;
  }
  #middle-content{
    width: 100%;
    margin: 10px auto;
  }
  h1{
    font-size: 32px;
    margin: 0;
  }
  #custom-top-wrapper{
      width: 100%;
      text-align: center;
  }
  #custom-top-logo{
      max-width: 100%;
      max-height: 150px;
  }
  #custom-top-link-container{
      float: unset;
      width: 100%;
      margin-top: 20px;
      padding-bottom: 20px;
  }
  #custom-top-link-container > a{
      font-size: 22px;
      font-weight: normal;
  }
}