/* inputs */
input {
    padding: var(--s-1) var(--s-2);
    border-radius: 3px;
    border: 1px solid var(--grey);
    background: #fff;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: var(--font-text);
    font-weight: 100;
}

input::placeholder {
    color: var(--grey);
}

/* hover */
input:hover {
    border-color: var(--light);
    background: #f7f7f7;
}

/* focus style premium */
input:focus {
    background: white;
    border-color: var(--light);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.instainp {
  padding-left: 42px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23A8B5AF' d='M128,84a44,44,0,1,0,44,44A44.04978,44.04978,0,0,0,128,84Zm0,80a36,36,0,1,1,36-36A36.04061,36.04061,0,0,1,128,164ZM172,32H84A52.059,52.059,0,0,0,32,84v88a52.059,52.059,0,0,0,52,52h88a52.059,52.059,0,0,0,52-52V84A52.059,52.059,0,0,0,172,32Zm44,140a44.04978,44.04978,0,0,1-44,44H84a44.04978,44.04978,0,0,1-44-44V84A44.04978,44.04978,0,0,1,84,40h88a44.04978,44.04978,0,0,1,44,44ZM188,76a8,8,0,1,1-8-8A8.00917,8.00917,0,0,1,188,76Z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 18px;
}