@keyframes width {
    0% {
        width: 0;
    }
    100% {
        width: 101%;
    }
}

.focus-border {
    position: relative;
}
.focus-border:after {
    content: '';display: block;
    border-bottom: 3px solid#E96858;
    border-radius: 3px;
    height: 4px;
    background-color: #E96858;
    position: absolute;
    left: 0;
    transform: scaleY(.5) translateY(2px);
    bottom: 0;
    width: 101%;
    animation: width .5s;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color:#d4d4d4;
    font-weight: 200
}

