/* fLOGIN button google/face START */


/* Shared */

.loginBtn {
    width: 70%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    margin: 5px 0;
    opacity: 0.85;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none !important;
    /* remove underline from anchors */
}

.loginBtn:hover {
    opacity: 1;
    color: white;
    background-position: 100% 0;
}

.fb {
    background-color: #3B5998;
    color: white;
    background-image: -webkit-linear-gradient(left, #3B5998 0%, #8a9ec6 50%, #26468b 100%);
    background-image: linear-gradient(to right, #3B5998 0%, #8a9ec6 50%, #26468b 100%);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-size: 200% 100%;
}

.google {
    background-color: #dd4b39;
    color: white;
    background-image: -webkit-linear-gradient(left, #dd4b39 0%, #dd695b 50%, #dd311c 100%);
    background-image: linear-gradient(to right, #dd4b39 0%, #dd695b 50%, #dd311c 100%);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-size: 200% 100%;
}


/* LOGIN button google/face END */