/* Social Login Buttons Standardization */

.social-login-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 5px;
    padding: 9px 20px;
    line-height: 32px;
    box-sizing: border-box;
    font-weight: 600;
    border-radius: 50px;
    font-size: 15px;
    height: auto;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-login-btn:hover {
    color: inherit;
    text-decoration: none;
}

.social-login-btn img.social-icon {
    margin-right: 10px;
    height: 24px;
    width: auto;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.social-login-btn i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
    position: relative;
    top: 1px;
}

/* Google Button */
.social-login-btn.google {
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
}

/* Facebook Button */
.social-login-btn.facebook {
    background-color: #3b5998;
    color: #fff;
    border: 1px solid #3b5998;
}

.social-login-btn.facebook img.social-icon {
    filter: brightness(0) invert(1);
}

/* GitHub Button */
.social-login-btn.github {
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
}