/**
 * Friendhyve Login Bridge — loginknop stijlen.
 * Werkt op zowel wp-login.php als de frontend (via shortcode).
 */

.flb-login-wrap {
    margin: 16px 0;
    text-align: center;
}

/* Scheidingslijn met 'of' ertussen */
.flb-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #888;
    font-size: 13px;
}

.flb-divider::before,
.flb-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

/* Loginknop */
.flb-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    padding: 10px 16px;
    background: #1a56db;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease;
    box-sizing: border-box;
}

.flb-login-button:hover,
.flb-login-button:focus {
    background: #1447bc;
    color: #fff;
    text-decoration: none;
}

.flb-login-button__icon {
    font-size: 10px;
    opacity: 0.8;
}

/* Foutmelding */
.flb-login-error {
    margin: 8px 0 16px;
    padding: 10px 14px;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
    font-size: 13px;
    border-radius: 2px;
}
