.input-group {
  position: relative;

  display: flex;
  flex-direction: column;
}

.input-group:after {
  content: '';

  width: 100%;
  height: 3px;

  border-radius: 2px;
  background: #743618;

  position: absolute;
  left: 0;
  bottom: -3px;
}

.input-group label {
  color: #743618;
  font-size: 0.875rem;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  text-transform: uppercase;

  margin: 0 0 8px 24px;
}

.input-group input {
  border: none;
  background: transparent;

  color: #743618;
  font-size: 1rem;
  font-family: Roboto, sans-serif;
  font-weight: 400;

  padding: 8px 24px;
}

.input-group input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FEC81D inset;
}


.input-group input::placeholder {
  color: #743618;
  color: #232323;

  opacity: 50%;
}
