/********************************
************  Form  *************
*********************************/
input {
    outline: none;
}
input::placeholder {
    color: var(--c-gray);
    opacity: 1; /* Firefox */
}

input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: var(--c-gray);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.input {
    position: relative;
}
.input input {
    background-color: #fff;
    height: 36px;
    width: 100%;
    color: #1f1f1f;
    padding: 5px 40px 5px 20px;
    border: none;
    font-size: 16px;
    /* font-weight: 700; */
    line-height: 24px;
    border-radius: var(--radius-xs);
}
.input-border input {
    border: 1px solid var(--Grey-100, #d7d7d5);
}
.input-lg input {
    height: 48px;
    background-color: var(--c-whitish);
}
.input-radius input {
    border-radius: 100px;
}
.input-outline input {
    border: 1px solid #d7d7d5;
}
.input-icon .button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9px;
    font-size: 18px;
    color: var(--c-gray);
    cursor: pointer;
    background: transparent;
    border: none;
}

.input-icon .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9px;
    font-size: 18px;
    border: none;
}
.success input {
    border: 1px solid #49b571;
}

label {
    font-family: var(--f-noto);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    display: block;
}
label:not([required]) {
    color: var(--c-gray);
}
label input {
    margin-top: 8px;
    box-shadow: 0px 1px 1px 0px #00000026 inset;
}
label input:focus,
label input:active {
    border: 1px solid #49b571;
}
label:not([required]) input {
    border-color: var(--c-whitish);
}

@media (max-width: 768px) {
    label {
        font-size: 16px;
        line-height: 20px;
    }
}
