body{
  /* background-image: url(https://images.wallpapersden.com/image/download/artistic-orange-landscape_bGxrZ2iUmZqaraWkpJRobWllrWdma2U.jpg); */
  background-color: #cccccc;
  background-attachment:fixed;
  background-size: 100%;
}


/* "Submit Projects...If you're a county engineer, log in below */
.headerbox-form {
  position: relative;
  display: block;
  left: calc(50% - 225px); 
  
  top: 80px;
  width: 450px;
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  
  text-align: center;
  background: #aaaaaa;
  color: white;

  backdrop-filter: blur(10px); /* Apply blur effect to content behind */
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 5px 5px rgba(15, 15, 15, 0.3);
}  

  .headerbox-form h1{
    padding-top: 5px;
    font-size: 1.7rem;
  }
    
  .headerbox-form h2{
    padding-top: 10px; 
    font-size: 1rem;
    font-weight: 600;
  }



/* login form */
.login {
  position: relative;
  display: block;
  left: calc(50% - 250px);

  top: 120px;
  width: 500px;
  height: 400px;
  padding: 20px;
  border-radius: 10px;

  text-align: center;
  background: rgba(170, 170, 170, 0.95);
  color: white;

  border: 3px dashed rgb(212, 212, 212);
  box-shadow: 0 5px 5px rgba(15, 15, 15, 0.3);
}
  .login h2 {
    margin-top: 20px;
    text-shadow:
    -1px -1px #555555, 
    1px -1px #555555,
    -1px 1px #555555,
    1px 1px #555555;
  }
  
.inputs {
  position: relative;
  display: block;
  left: calc(50% - 175px);
  
  margin-top: 30px;
  height: 50px;
  width: 350px;
  border-radius: 50px;

  color: rgb(75, 75, 75);
  font-weight: 700;
  text-indent: 5%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
  .inputs:focus{
    outline: 3px solid white;
  }

  #login-button {
    margin-top: 30px;
    width: 150px;
    height: 50px;

    color: #696969;
    font-weight: 600;
    font-size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
  }
  #forgot-password{
    position: relative;
    display: block;
    top: 30px;

    text-decoration: none;
    color:#ffffff;
    font-weight: 600;
  }
  #message {
    color:rgb(255, 184, 184);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: -15px;
  }



