/* Diadabox Social Login — boutons front (logo officiel unique, style homogène) */
.dsl-container {
    width: 100%;
}

.dsl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dsl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dsl-button:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.dsl-button__icon {
    display: inline-flex;
    width: 26px;
    height: 26px;
}

.dsl-button__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
