.reusable-textarea-wrapper {
    position: relative;
    padding: 10px 15px;
    border: 2px solid black;
    border-bottom: 5px solid black;
}

.reusable-textarea-wrapper label {
    position: absolute;
    left: 15px;
    top: -7px;
    line-height: 1;
    background-color: white;
    padding: 0px 2px;
    font-size: 12px;
    z-index: 999;
}

.reusable-textarea-component, .reusable-textarea-component:focus {
    display: block;
    width: 100%;
    box-sizing: border-box;
    resize: none;
    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.6;
    background-color: white;
    color: black;
    outline: none;
    border: none;
    white-space: pre-wrap;
    padding: 5px 0px;
}

.reusable-textarea-component[readonly] {
    cursor: default;
}

.reusable-textarea-component::placeholder {
    color: gray;
}

.reusable-textarea-wrapper .word-count {
    font-size: 13px;
    line-height: 1;
    margin-top: 20px;
    padding-top: 5px;
    border-top: 2px solid whitesmoke;
}

.reusable-textarea-wrapper .word-count.over-max-length {
    color: red;
}
