/* header */
header {
  width: 90%;
  margin: auto;
  padding: 20px;
  padding-top: 20px;
  text-align: center;
}
#header {
  
  height: max-content;
  margin: auto;
  justify-content: space-around;
  display: flex;
  padding: 10px;
  /* margin-top: 10px; */
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: sans-serif;
  color: black;
}
#header > div {
  
  color: black; 
  padding-right: 20px;
  border-right: 2px solid red;
  /* text-decoration: 0; */
  
}
#header > div > a{
  color: black;
  text-decoration: 0;
}
#header > div:last-child {
  border-right: 0;
}


.search-container {
/* float: right; */
text-align: right;
cursor: pointer;
}


input[type=text] {
padding: 6px;
margin-top: 8px;
font-size: 17px;
border: none

}

.search-container button {
float: right;

padding: 6px 10px;
margin-top: 8px;
margin-right: 16px;
/* background: #ddd; */
font-size: 17px;
border: none;
cursor: pointer;
}

#first {
display: flex;  

}

.fa-solid {
color: salmon;
}



#logincontainerFoot {
    height: 10x;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
  
  #formlogin {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    height: 400px;
    border-radius: 0.5rem;
    box-shadow: 4px 4px 20px 5px rgba(0, 0, 0, 0.25);
  }
  
  #formlogin input {
    width: 95%;
    margin: 1rem;
    font-size: 1.2rem;
    padding: 0.5rem;
    border: 2px solid salmon
  }
  #formlogin input[type="submit"] {
    color: white;
    background: salmon;
    border: none;
    width: 100%;
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  #formlogin input[type="submit"]:hover{
      cursor: pointer;
  }
  
  #formlogin-heading {
    
    margin: 0.5rem;
  }
   #formlogin hr{
    width: 90%;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 20px;
  }
  #formlogin button{
    border: 0px;
    width:100%;
    height: 50px;
    font-size: 1.5rem;
    margin-top: -10px;
    background-color: black;
    color: white;
  }
  #formlogin button:hover{
    background-color: salmon;
    cursor: pointer;
  }