/**
 * WP SPID + CIE — Stili bottone "Entra con CIE"
 * Colori ufficiali: https://www.cartaidentita.interno.gov.it
 * Blu CIE: #003A7D | Hover: #002960
 */

/* ── Wrapper ──────────────────────────────── */
.wp-cie-button-wrapper {
    display: inline-block;
    font-family: 'Titillium Web', -apple-system, 'Segoe UI', sans-serif;
}

/* ── Bottone ──────────────────────────────── */
.wp-cie-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #003A7D;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #003A7D;
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

.wp-cie-button:hover,
.wp-cie-button:focus {
    background-color: #002960;
    border-color: #002960;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 58, 125, 0.35);
    outline: none;
}

.wp-cie-button:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

.wp-cie-button:active {
    background-color: #001f4d;
    border-color: #001f4d;
    transform: translateY(1px);
}

/* ── Logo SVG ─────────────────────────────── */
.wp-cie-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.wp-cie-logo svg {
    display: block;
}

/* ── Taglie ───────────────────────────────── */
.wp-cie-size-xs .wp-cie-button { padding: 6px 12px; font-size: 12px; gap: 6px; }
.wp-cie-size-s  .wp-cie-button { padding: 8px 16px; font-size: 14px; gap: 8px; }
.wp-cie-size-m  .wp-cie-button { padding: 10px 20px; font-size: 16px; gap: 10px; }
.wp-cie-size-l  .wp-cie-button { padding: 12px 24px; font-size: 18px; gap: 12px; }
.wp-cie-size-xl .wp-cie-button { padding: 16px 32px; font-size: 20px; gap: 14px; }

/* ── Nella pagina di login WP ─────────────── */
.wp-cie-login-page-wrapper {
    margin-top: 20px;
    text-align: center;
}

.wp-cie-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
    color: #666;
    font-size: 13px;
}

.wp-cie-divider::before,
.wp-cie-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.wp-cie-divider span {
    padding: 0 10px;
}

.wp-cie-login-page-wrapper .wp-cie-button-wrapper {
    display: flex;
    justify-content: center;
}

/* ── Link logout ──────────────────────────── */
.wp-cie-logout-link {
    color: #003A7D;
    text-decoration: underline;
    font-size: 14px;
}
.wp-cie-logout-link:hover {
    color: #002960;
}
