/* Yeap Account Connect — Public / Login Page Styles */

/* ── SSO Button ───────────────────────────────────────────────────────────── */

.yeap-sso-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1d4ed8 !important;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.4;
    letter-spacing: 0.01em;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.yeap-sso-button:hover,
.yeap-sso-button:focus {
    background: #1e40af !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35) !important;
    outline: none;
}

.yeap-sso-button:active {
    background: #1e3a8a !important;
    box-shadow: none !important;
}

.yeap-sso-button:visited {
    color: #ffffff !important;
}

/* ── OR Divider ───────────────────────────────────────────────────────────── */

.yeap-login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
    text-transform: lowercase;
}

.yeap-login-divider::before,
.yeap-login-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid #e5e7eb;
}

/* ── Button with Yeap logo icon (optional SVG icon via background-image) ─── */

.yeap-sso-button--with-icon {
    padding-left: 16px;
}

.yeap-sso-button--with-icon::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><circle cx="12" cy="8" r="4"/><path d="M12 14c-6 0-8 2.5-8 4v1h16v-1c0-1.5-2-4-8-4z"/></svg>') no-repeat center center !important;
    background-size: 18px 18px !important;
    flex-shrink: 0;
}

/* ── Login page integration ───────────────────────────────────────────────── */

/* WordPress login form specific overrides */
#login .yeap-sso-button {
    margin: 0;
}

#login .yeap-login-divider {
    margin: 20px 0;
}

/* ── Error message on login form ─────────────────────────────────────────── */

#login_error.yeap-sso-error {
    border-left-color: #dc2626;
}

/* ── Shortcode / inline button context ───────────────────────────────────── */

.yeap-sso-button-wrapper {
    margin: 12px 0;
}

/* When used inside a WooCommerce or similar login form */
.woocommerce .yeap-sso-button,
.woocommerce-page .yeap-sso-button {
    width: 100%;
}

/* ── Focus ring for accessibility ────────────────────────────────────────── */

.yeap-sso-button:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.2) !important;
}
