.Input {
    font-size: 14px;
    color: var(--theme-grey2);
    line-height: 20px;
    padding: 12px 18px;
    margin: 0;
    outline: 0;

    position: relative;
    background-color: var(--theme-grey5);
    border: 1px solid transparent;
    border-radius: 4px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-transition: background-color 150ms ease-in,border 150ms ease-in;
    transition: background-color 150ms ease-in,border 150ms ease-in;
    height: 48px;
}

.Input:focus {
    background-color: white !important;
    border-color: var(--theme-blue-pure);
}

.Input[disabled] {
    background-color: var(--theme-grey4);
}

.Input[aria-invalid="true"] {
    background-color: white !important;
    border-color: var(--theme-red-pure);
}

.Input::-webkit-input-placeholder {
    color: var(--theme-grey2);
    opacity: 1;
}

.Input::-moz-placeholder {
    color: var(--theme-grey2);
    opacity: 1;
}

.Input:-ms-input-placeholder {
    color: var(--theme-grey2);
    opacity: 1;
}

.Input::placeholder {
    color: var(--theme-grey2);
    opacity: 1;
}

.Input::-webkit-search-decoration {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.Input::-webkit-search-cancel-button {
    display: none;
}

.InputErrorMessage {
    position: absolute;
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 14px;
    color: var(--theme-red-pure);
}

.InputLabel {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    color: var(--theme-grey3);
}