/**
 * Styles for the login form
 */
.social-auth.auth-link {
    border-bottom: none;
}

.social-auth.auth-icon {
    width: 3em;
    margin-right: 5px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.social-auth.auth-icon:hover {
    animation-name: grey;
    animation-duration: 0.5s;
    filter: grayscale(1);
}

@keyframes grey {
    from {
        webkit-filter: grayscale(0);
        filter: grayscale(0);
    }

    to {
        webkit-filter: grayscale(1);
        filter: grayscale(1);
    }
}

/* Button Styles for Social Auth */
a.social-auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    text-decoration: none;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
}

a.social-auth-button:hover {
    cursor: pointer;
}

a.social-auth-button .social-auth-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

a.social-auth-button img.auth-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    /* Override default */
}