.input-wrapper {
    position: relative;
    margin-top: 7px;
}

.input-wrapper .input-value {
    background: transparent;
    outline: none;
    border: 1px solid #e8e8ee;
    border-radius: 4px;
    padding: 12px 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #072653;
}

.input-wrapper .input-value::placeholder {
    color: rgba(103, 105, 134, 0.6);
    opacity: 0.6;
}

.input-wrapper .input-value[disabled] {
    color: rgba(103, 105, 134, 0.6);
}

.input-wrapper.error .input-value {
    border-color: #e82b2b;
}

.input-wrapper .input-value::-webkit-input-placeholder,
.input-wrapper .input-value::-moz-placeholder,
.input-wrapper .input-value:-ms-input-placeholder,
.input-wrapper .input-value:-moz-placeholder {
    color: #c2c3d2;
}

.input-wrapper .input-label {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    color: rgba(26, 33, 86, 1);
    top: -8px;
    left: 15px;
    background: white;
    padding: 0 5px;
}

.input-wrapper.error .input-label {
    color: #e82b2b;
}

.input-wrapper .errors-holder {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    position: absolute;
}

.input-wrapper .info-wrapper {
    width: 100%;
    border: 1px solid #e8e8ee;
    border-top: 0;
    border-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    box-sizing: border-box;
    margin-top: -2px;
    overflow: hidden;
    background: #f3f4f6;
    color: black;
    font-size: 15px;
    line-height: 22.5px;
    font-weight: 500;
    padding: 8px 20px;
}

.input-wrapper .button-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.input-wrapper .button-wrapper .btn {
    padding: 4px 8px;
    font-size: 12px;
    height: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 10px;
}

.input-wrapper .button-wrapper .btn.check-status {
    background: #30d366;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    padding: 4px 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 31px;
    color: #072653;
}

.input-wrapper .button-wrapper .btn i {
    display: none;
}
