.account-social-login .block-content {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px;
    background-color: #f6f6f6;
    flex-wrap: wrap;
}

/* Base style for buttons */
.account-social-login .btn-social {
    font-size: 16px;
    text-decoration: none;
    color: #fff !important;
    padding: 10px 10px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

/* Platform-specific colors */
.account-social-login .btn-facebook {
    background-color: #3b5998;
}
.account-social-login .btn-facebook:hover {
    background-color: #2d4373;
}

.account-social-login .btn-google {
    background-color: #3672ce;
}
.account-social-login .btn-google:hover {
    background-color: #5f8fdf;
}

.account-social-login .btn-twitter {
    background-color: #1da1f2;
}
.account-social-login .btn-twitter:hover {
    background-color: #0d95e8;
}

.account-social-login .btn-linkedin {
    background-color: #0077b5;
}
.account-social-login .btn-linkedin:hover {
    background-color: #005983;
}

.account-social-login .btn-github {
    background-color: #333;
}
.account-social-login .btn-github:hover {
    background-color: #24292e;
}

/* Optional: Add icon spacing */
/* .account-social-login .btn-social .fa {
    margin-right: 11px;
} */

.account-social-login .btn-microsoft {
    background-color: #0078D4; /* MS blue */
}
.account-social-login .btn-microsoft:hover {
    background-color: #005a9e;
    color: #ffffff;
}
