@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(90deg, #691415, #ae3426, #691415);
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.search {
  position: relative;
  height: 50px;
}

.search .input {
  background: rgba(92, 57, 10, 0.377);
  color: rgb(221, 221, 221);
  border: 0;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 100;
  padding: 15px;
  height: 50px;
  width: 50px;
  transition: width 0.3s ease;
}

.btn {
  background-color: rgb(212, 172, 38);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #691415;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  transition: transform 0.3s ease;
}

.btn:focus,
.input:focus {
  outline: none;
}

.search.active .input {
  width: 245px;
}

.search.active .btn {
  transform: translateX(198px);
}
