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

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

.textarea textarea {
    width: 100%;
    height: 100%;
    padding: 9px;
    outline: none;
    border: 1px solid #a9a9a92e;
    border-radius: 4px;
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
    background: #ffffff14;
    color: #adadad;
}

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

.textarea textarea:focus+.inputPlaceholder, .textarea textarea.hasText+.inputPlaceholder {
    top: -6px;
    font-size: 10px;
    height: 14px;
    background: white;
    padding: 0px 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 41%, rgb(55 55 55) 43%, rgb(55 55 55) 50%, rgb(55 55 55) 57%, rgba(255,255,255,0) 57%);
    color: #999;
}

.textarea textarea:focus {
    box-shadow: 0px 1px 7px -4px #6f6f6f;
    border: 1px solid #55fff5ab;
}