#job { width: 300px; height: 300px; position: relative; animation-name: job-search; animation-duration: 25s; animation-timing-function: linear; animation-delay: 2s; animation-iteration-count: infinite; animation-direction: alternate; } @keyframes job-search { 0% {left:0px; top:0px;} 25% {left:200px; top:0px;} 50% {left:200px; top:50px;} 75% {left:0px; top:50px;} 100% {left:0px; top:0px;} } .container-fluid .row form { margin: 1rem; width: 20rem; } .container-fluid .row form label { margin: 1rem; } .container-fluid .row form input { padding-left: 30px; }