.input-group {
  border-radius: 25px;
  padding: 12px 35px;
  background: white;
  margin-top: 25px;
  position: relative;
}

.input-group .input {
  border: none;
}

.input-group .input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.input-group .button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: orange;
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  cursor: pointer;
  right: 12px;
  top: 50%;
  border-radius: 100%;
  padding: 0;
  border: 0px;
  transform: translateY(-50%);
  transition: 400ms ease;
  transition-property: transform, background, color;
  will-change: transform, background, color;
  border: 2px solid orange;
  transform-origin: center;
}

.input-group .button:hover {
  color: orange;
  background: white;
}

input[type='radio'],
input[type='checkbox'] {
  width: 10px;
  height: 10px;
  box-sizing: content-box;
  border-radius: 2px;
  border: 2px solid #273e39;
  display: block;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type='radio']:checked::after,
input[type='checkbox']:checked::after {
  opacity: 1;
}

input[type='radio']::after,
input[type='checkbox']::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff8f49;
  border-radius: 100%;
  opacity: 0;
  transition: opacity 400ms ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* @media (min-width: 1600px) {
  input[type='radio']::after,
  input[type='checkbox']::after {
    margin-left: 3px;
  }
} */

.input-primary {
  padding: 12px 20px;
  margin: 0;
  width: 100%;
  border-radius: 0;
  background: #fafafa;
  font-family: 'Proxima Nova Alt', sans-serif;
  border: 1px solid #273e39;
  box-sizing: border-box;
}
