.input {position: relative;font-size: 14px;margin: 15px 0px;box-sizing: border-box;}

.input .inputPlaceholder {
    position: absolute;
    top: 0;
    left: 8px;
    height: 100%;
    align-items: center;
    pointer-events: none;
    display: flex;
    z-index: 1;
    transition: all .3s;
    color: #999;
}

.input input {
    width: 100%;
    height: 100%;
    padding: 9px;
    outline: none;
    border: 1px solid #ffffff38;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    -webkit-appearance: none;
    background: #ffffff0f;
    color: #999;
}

.input .inputPlaceholder:before {content: '';width: 100%;position: absolute;left: 0;height: 18px;top: 0;bottom: 0;margin: auto;/* background: white; */z-index: 0;}

input:focus+.inputPlaceholder, .input input.hasText+.inputPlaceholder {
    top: -6px;
    font-size: 10px;
    height: 14px;
    background: rgb(67 69 75);
    padding: 0px 2px;
    background: linear-gradient(180deg, rgb(32 36 44 / 0%) 41%, rgb(32 36 44) 43%, rgb(32 36 44) 50%, rgb(32 36 44) 50%, rgb(32 36 44 / 0%) 57%);
}

.input input:focus {
    box-shadow: 0px 1px 7px -4px #6f6f6f;
    border: 1px solid #52c2ff;
}