.withplaceholder {
    display: inline-block;
    position: relative;
}

.withplaceholder input{
    position: relative;
}
    
.placeholder {
    display: block;
    font-size: 9px;
    color: #999;
    position: absolute;
    top: 7px;
    right: 10px; /* changed from 15px for codepen */
    transition: all .3s ease-in-out;
    text-align: left;
    z-index: 5;
    opacity: 0;
}

/*.placeholder.on {
    transition: all .3s ease-in-out;
    float: left;
}*/

