.login {
    overflow: hidden;
    background-color: #f1f1f1;
    padding: 40px 30px 30px 30px;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
    -moz-transition: -moz-transform 300ms, box-shadow 300ms;
    transition: transform 300ms, box-shadow 300ms;
}

.form-wrapper {
    padding: 30px 20px 20px 20px;
}

.new-login-box {
    width: 320px;
    height: 460px;
    background-color: #ffffff;
    border-radius: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
}

.new-login-box h5 {
    color: #969696;
    font-size: 12px;
    text-align: center;
    margin-top: 50px;
}

.form-group i {
    right: 10px;
    top: 7px;
    position: absolute;
    color: #555;
    font-size: 15px;
}

.logo {
    animation-name: logoAnimation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    width: 165px;
    margin-left: -45px;
}

.like-link {
    color: #4073c0;
    cursor: pointer;
    margin: 0px 2px;
}

@keyframes logoAnimation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}