/* HEADER */
/* phones */
@media only screen and (min-width: 0px) {
  body {
    font-family: "Raleway", sans-serif;
    min-width: 360px;
  }
  header {
    padding: 1rem 0rem;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .logo--div {
    order: 1;
  }
  .login--div {
    order: 2;
  }
  .search--div {
    order: 3;
  }

  .logo--div {
    display: flex;
    align-items: center;
    font-weight: 800;
  }
  .logo--div img {
    padding-right: 0.1rem;
  }

  .logo--div h1 span {
    color: #2a7ae4;
  }

  .login--button {
    height: 40px;
    width: fit-content;
    border-width: 1px;
    background-color: white;
    border: solid #2a7ae4 1px;
    color: #2a7ae4;
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem 1.5rem;
    display: inline;
  }
  a {
    text-decoration: none;
    color: #2a7ae4;
  }
  .search--div {
    display: flex;
    padding: 0.3rem;
    justify-content: space-between;
    border-radius: 15px;
  }
  .search--input {
    width: 0px;
    outline: none;
    height: 20px;
    border: none;
    border-radius: 15px;
    transition: ease-out 800ms;
   
  }
  .search--input:focus {
    transition: ease-in 800ms;
    background-color: #f5f5f5;
    color: #a2a2a2;
    width: 110px;
    font-size: 11px;
  }
  .search--div:focus-within {
    background-color: #f5f5f5;
    color: #a2a2a2;
  }
}
/* tablets*/
@media only screen and (min-width: 361px) {
  header {
    padding: 1rem 0rem;
    justify-content: space-evenly;
    align-items: center;
    display: flex;
  }
  .logo--div {
    order: 1;
  }
  .login--div {
    order: 3;
  }
  .search--div {
    order: 2;
  }

  .search--div {
    display: flex;
    padding: 0.3rem;
    justify-content: space-between;
    background-color: #f5f5f5;
    border-radius: 15px;
    color: #a2a2a2;
  }
  .search--input {
    outline: none;
    display: block;
    width: 80%;
    height: 20px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 15px;
  }
  .search--img {
    justify-content: left;
  }
}
/* laptops and desktops */
@media only screen and (min-width: 769px) {
  body {
    max-width: 1500px;
  }
  .logo--div h1 {
    font-size: 26px;
  }
  .logo--img {
    height: 1.5rem;
  }
  .search--div {
    width: 300px;
  }
  .search--input {
    outline: none;
    display: block;
    width: 200px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 15px;
  }
  .search--img {
    padding-right: 0.5rem;
  }
}
