.form-anim {
    position: relative;
    margin-top: 1.5rem;
}

.form-anim label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.8rem;
    color: #999;
    cursor: text;
    transition: 0.2s ease all;
    pointer-events: none;
}

.form-anim input:focus ~ label,
.form-anim input:valid ~ label,
.form-anim input:not(:placeholder-shown) ~ label {
    top: -17px;
    left: 0;
    font-size: 0.8em;
    color: #666;
}