/* Shared social sign-in / sign-up buttons (rendered by Views/Shared/_SocialButtons.cshtml).
   Kept in step with the same rules in login.css, which predate this file. */

.external-providers {
    margin-top: 20px;
}

.social-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 16px 0;
    color: #aaa;
    font-size: 13px;
}

    .social-divider::before,
    .social-divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e0e0e0;
    }

    .social-divider span {
        padding: 0 10px;
    }

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 44px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

    .btn-social:hover {
        opacity: 0.9;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        text-decoration: none;
    }

.btn-google {
    background-color: #fff;
    color: #3c4043;
    border: 1px solid #dadce0;
}

    .btn-google i {
        color: #4285F4;
    }

    .btn-google:hover {
        background-color: #f8f9fa;
        color: #3c4043;
    }

.btn-facebook {
    background-color: #1877F2;
    color: #fff;
}

    .btn-facebook:hover {
        background-color: #166fe5;
        color: #fff;
    }

.btn-tiktok {
    background-color: #000;
    color: #fff;
}

    .btn-tiktok:hover {
        background-color: #161823;
        color: #fff;
    }

.btn-default {
    background-color: #6c757d;
    color: #fff;
}

    .btn-default:hover {
        background-color: #5a6268;
        color: #fff;
    }
