.cnx-login-social {
    margin: 0 0 24px;
    padding: 24px;
    border: 1px solid #eadfd7;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
    box-shadow: 0 14px 34px rgba(109, 73, 44, 0.08);
    text-align: center;
}

.cnx-login-social__eyebrow {
    margin-bottom: 8px;
    color: #9a6a41;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cnx-login-social__title {
    margin: 0 0 8px;
    color: #42362d;
    font-size: 28px;
    line-height: 1.2;
}

.cnx-login-social__text {
    margin: 0 0 18px;
    color: #6f6259;
    font-size: 15px;
    line-height: 1.6;
}

.cnx-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
    padding: 14px 22px;
    border: 1px solid #d9dfe7;
    border-radius: 999px;
    background: #fff;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(31, 31, 31, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cnx-login-button:hover,
.cnx-login-button:focus {
    border-color: #c2ccd8;
    box-shadow: 0 16px 28px rgba(31, 31, 31, 0.14);
    color: #1f1f1f;
    transform: translateY(-1px);
}

.cnx-login-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.cnx-login-button__label {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .cnx-login-social {
        padding: 18px;
    }

    .cnx-login-social__title {
        font-size: 24px;
    }

    .cnx-login-button {
        width: 100%;
        min-width: 0;
    }
}