.wox-input-wrapper {
    text-align: left;
    position: relative;
}

.wox-input:not(label) {
    height: 40px;
    width: 100%;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    background-color: #FFFFFF;
    color: #1E293B;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid rgba(71, 85, 105, 0.1);
    outline: none;
}

.wox-input.solid {
    border: 1px solid rgba(71, 85, 105, 0.05);
    background-color: rgba(71, 85, 105, 0.05);
}

.wox-input:not(label):focus {
    border: 2px solid #3B82F6;
    outline: 4px solid rgba(37, 99, 235, 0.2);;
}

textarea.wox-input {
    height: 80px;
    resize: none;
}

label.wox-input {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 6px;
    color: #1E293B;
}


input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: rgba(71, 85, 105, 0.4);
    font-weight: 500;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: rgba(71, 85, 105, 0.4);
    font-weight: 500;
}

textarea.wox-input:hover,
input.wox-input:hover {
    background-color: rgba(100, 116, 139, 0.08);
}

textarea.wox-input:active:not(:disabled),
input.wox-input:active:not(:disabled) {
    background-color: rgba(100, 116, 139, 0.16);
}

textarea.wox-input:focus,
input.wox-input:focus {
    background-color: #FFFFFF;
    padding-left: 11px;
    background-position: center right 13.5px !important;
}

textarea.wox-input:focus {
    padding-top: 7px;
}

.wox-input.disabled,
.wox-input:disabled {
    opacity: 0.3;
}

input.wox-input.disabled:hover {
    background-color: #F1F5F9;
}

.wox-input.search {
    background-image: url("img/search-icon.svg");
    background-repeat: no-repeat;
    background-position: center left 15px;
    padding-left: 37px;
}

.wox-input.search:focus {
    background-position: center left 14px !important;
}

.wox-input.search:focus {
    padding-left: 36px;
}

.wox-input.calendar {
    background-image: url("img/calendar-icon.svg");
    background-repeat: no-repeat;
    background-position: center right 15px;
}

.wox-input.dropdown {
    background-image: url("img/dropdown-icon.svg");
    background-repeat: no-repeat;
    background-position: center right 15px;
}

.wox-input.password {
    background-image: url("img/eye-opend-icon.svg");
    background-repeat: no-repeat;
    background-position: center right 15px;
}

.wox-input.email {
    background-image: url("img/emal-icon.svg");
    background-repeat: no-repeat;
    background-position: center right 15px;
}

.wox-input.message + div,
.wox-input.success + div,
.wox-input.warning + div,
.wox-input.error + div {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #475569;
    margin-top: 4px;
}

.wox-input.success,
.wox-input.success:hover,
.wox-input.success:active,
.wox-input.success:focus {
    border-width: 2px;
    border-color: #4ADE80 !important;
    outline: 4px solid rgba(22, 163, 74, 0.2);
}

.wox-input.warning,
.wox-input.warning:hover,
.wox-input.warning:active,
.wox-input.warning:focus {
    border-width: 2px;
    border-color: #D97706!important;
}

.wox-input.error,
.wox-input.error:hover,
.wox-input.error:active,
.wox-input.error:focus {
    border-width: 2px;
    border-color: #F87171!important;
    outline: 4px solid rgba(220, 38, 38, 0.2);
}

.wox-input.message + div::before,
.wox-input.success + div::before,
.wox-input.warning + div::before,
.wox-input.error + div::before {
    position: relative;
    top: 3px;
    margin-right: 4px;
}

input.wox-input.large {
    height: 44px;
    font-size: 16px;
    border-radius: 12px;
}

textarea.wox-input.large {
    font-size: 16px;
    border-radius: 12px;
}

label.wox-input.large {
    font-size: 16px;
    line-height: 24px !important;
}

.large.wox-input.message + div,
.large.wox-input.success + div,
.large.wox-input.warning + div,
.large.wox-input.error + div {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1200px) {
    .wox-input:not(label) {
        font-size: 12px;
        line-height: 16px;
        border-radius: 8px;
    }

    input.wox-input:not(label) {
        height: 36px;
    }

    .wox-input.message + div,
    .wox-input.success + div,
    .wox-input.warning + div,
    .wox-input.error + div {
        font-size: 12px;
        line-height: 16px;
    }

    label.wox-input {
        font-size: 12px;
        line-height: 16px !important;
    }
}

