@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  height: 100vh;
  background: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

form {
  background: #fff;
  width: 600px;
  height: 55px;
  display: flex;
}

form input {
  flex: 1;
  border: none;
  outline: none;
}

form button {
  background: tomato;
  padding: 10px 50px;
  border: none;
  outline: none;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.1s ease-out;
}

form button:hover{
  background-color: rgb(241, 81, 53);
}

form button:active{
  transform: translateX(3px);
}

form .fa-search {
  align-self: center;
  padding: 10px 20px;
  color: #777;
}
