html,
body {
  margin: 0;
  padding: 0;
}

:root {
  --search-border: #bbb;
  --search-focus-border: #3a71ca;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#search-field {
  font-size: 1.5rem;
  min-width: 100px;
  width: 15%;
  height: 54px;
  border: 1px solid gray;
  border-radius: 10px;
  padding: 0.5rem;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

input:focus {
  border-color: dodgerblue;
  box-shadow: 0 0 5px dodgerblue;
  width: 33% !important;
  outline: none;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
}
