*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  h1{
    text-align: center;
    margin: 20px;
    color: white;
  }
  a{
    color: white;
  }
  a:hover{
    text-decoration: none;
  }
  .container{
    width: 450px;
    height: 500px;
    background-color: rgba(24, 33, 52, 0.7);
    margin: 50px auto;
    border-radius:  0 0 10px 10px;
    text-align: center;
  }
  input{
    width: 300px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 50px;
    border-radius: 4px;
    padding-left: 10px;
  }
  input:hover{
    box-shadow: 0 0 6px 3px rgba(58, 219, 253, 0.35);
  }
  .submit{
    padding: 13px 30px;
    font-size: 15px;
    background-color: #2CA8C6;
    color: white;
    border: none;
    border-bottom: 4px solid #6EE9FD;
    margin-bottom: 20px;
    cursor: pointer;
    width: 300px;
    transition: all 0.5s;
  }
  .submit:hover{
    background-color: #FFFFFF;
    color: #2C536C;
  }
  .logo{
    color: #FFFFFF;
    font-weight: bold;
    padding: 50px;
  }
  .input{
    position: relative;
  }
  #search {
      position: absolute;
      font-family: sans-serif;
      font-size: 12px;
      background-color: white;
      border: black thin solid;
      width: 299px;
    }
    .search:hover{
      background-color: lightblue;
      cursor: pointer;
    }