.input__wrap{
    border: 1px solid var(--input-line);
    height: 56px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: ease .15s;
    padding: 15px;
}

.input__wrap + .input__wrap{
    margin-top: 10px;
}

.input__wrap input{
    width: 100%;
    height: 100%;
    border: none;
    background: rgba(0,0,0,0);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    line-height: 1;
}

.input__wrap input::placeholder{
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #000 inset;
    -webkit-text-fill-color: #fff;
}

.input__wrap textarea{
    width: 100%;
    height: 100%;
    border: none;
    background: rgba(0,0,0,0);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    line-height: 1;
}

.input__wrap textarea::placeholder{
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
}

textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #000 inset;
    -webkit-text-fill-color: #fff;
}

.input__wrap.active textarea{
    color: var(--white-color);
}

.input__wrap:has(input:read-only){
    border: none;
    background-color: #2B2B2B;
    border: 1px solid var(--input-line);
}

.input__wrap:has(input:read-only) input{
    color: var(--gray-color);
}

.input__wrap.active{
    border: 1px solid var(--white-color);
}

.input__wrap.active input{
    color: var(--white-color);
}

.input__wrap .gray__btn{
    min-width: 76px;
    height: 36px;
    position: relative;
    margin-left: 15px;
}
