.social-link-card {
    background: #fff;
    border: 1px solid #d8dae7;
    border-radius: 16px;
    padding: 18px 20px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.social-link-card.is-linked {
    border-color: #5dce59;
    box-shadow: 0 8px 24px rgba(93, 206, 89, 0.14);
}
.social-link-card__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.social-link-card__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.social-link-card__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f3f5fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.social-link-card__logo img {
    width: 22px;
    height: 22px;
    display: block;
}
.social-link-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2430;
}
.social-link-card__status {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
}
.social-link-card.is-linked .social-link-card__status {
    color: #2b8a3e;
}
.social-link-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.social-link-card__attach,
.social-link-card__detach {
    min-width: 120px;
    text-align: center;
}
.social-link-card__detach {
    background: #fff;
    color: #e04265;
    border: 1px solid #e04265;
    border-radius: 10px;
}
.social-link-card__detach:hover {
    background: #e04265;
    color: #fff;
}
#promocode_msg.warning_message {
    background-color: #E04265;
}
.social-auth-container {
    margin-bottom: 16px;
}
.social-auth-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.social-auth__header {
    font-size: 14px;
    color: #5f6472;
    white-space: nowrap;
}
.social-auth__list {
    display: flex;
    gap: 10px;
}
.social-auth__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-auth__item img {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 10px;

    transition:
            transform .18s ease,
            box-shadow .18s ease,
            filter .15s ease,
            opacity .15s ease;
}
.social-auth__item:hover img {
    transform: translateY(-2px);
    box-shadow: 0 4px 9px rgba(0,0,0,.22);
}
.social-auth__item:active img {
    transform: translateY(1px) scale(.94);
}
.social-auth__loader {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.45);
    border-top-color: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: socialAuthSpin .7s linear infinite;
    transition: opacity .15s ease;
}
.social-auth__item.loading {
    pointer-events: none;
}
.social-auth__item.loading img {
    filter: blur(1px) brightness(.65);
    opacity: .85;
}
.social-auth__item.loading .social-auth__loader {
    opacity: 1;
}
@keyframes socialAuthSpin {
    to {
        transform: rotate(360deg);
    }
}