/* BRIDGE FRONT-END UI COMPONENTS */
.bridge-sso-button {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #222;
    transition: 0.3s;
}

.bridge-sso-button:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 20px rgba(0,234,255,0.3);
}