html{
    vertical-align: middle;
    text-align: center;
    height: 100%;
    width: 100%;
}

body{
    text-align: left;
    background-color: #eee; /* Standard syntax */
    padding: 10px;
    padding-top: 80px;
}

#logo{
    top: 10%;
    left: 2%;
    width: 300px;
}

@keyframes whatsanimation{
  from {right: -300px;}
  to {right: 20px;}
}
#whats{
    position: static;
    margin: 0;
    cursor: pointer;
    display: block;
    bottom: 20px;
    right: -300px;
    z-index: 99999999;
    animation-name: whatsanimation;
    animation-duration: 0.5s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    -webkit-animation-name: whatsanimation;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
}

.login-form{
    width: 100%;
    text-align: right;
}

.user{
    border: 0;
    border-radius: 1000px;
    padding: 20px;
    background-color: #FFF;
    margin: 2px;
    width: 270px;
    text-align: center;
}

.submit{
    border: 0;
    border-radius: 1000px;
    padding: 20px;
    margin: 2px;
    width: 270px;
    color: #FFF;
    background-color: #81c111;
    text-align: center;
}