.social-providers .loader {
    width: 28px;
    height: 28px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.social-providers .btn[disabled] {
    background: #e6e6e6;
}
.last-used-tag{
    position: absolute;
    top: -7px;
    right: 0;
    padding: 2px;
    border-color: rgba(0, 0, 0, 0.08);
    border: 1px solid;
    font-size: 8px;
    color: #FFF;
    border-radius:  4px;
    background: var(--semantic-color-emerald-solid-surface-normal-highest, #00C390);
}