.custom_input {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 100%;
  padding-top:15px;
}

.input {
  display: block;
  font-size: 14px;
  padding: 2px 2px;
  width: 100%;
  outline: none;
  background: #322E1F;
  color: #C69214;
  border: 2px solid #C69214;
  border-radius: 10px;
  transition: .3s ease;
  padding-left: 35px;
  padding-top:2px;
  margin-bottom: 10px;
}

.input:focus {
  background: #F2F2F2;
  border: 2px solid #C69214;
  border-radius: 10px;
}

.input::placeholder {
  color: #F2F2F2;
}
.svg_icon {
  position: absolute;
  fill: #C69214;
  width: 14px;
  height: 14px;
  left: 10px;
}
.testbutton {
  font-family: arial;
  font-size: 14px;
  color: #C69214 !important;
  padding: 2px 8px;
  border-radius: 10px;
  border: 2px solid #C69214;
  background: #322E1F;
  margin-bottom: 10px;
}

.testbutton:hover {
  color: #C69214 !important;
  background: #F2F2F2;
}