/**
 * ICCHK Passkey Login Styles
 */

#icchk-passkey-login-wrapper {
    margin: 20px 0;
    text-align: center;
}

.icchk-passkey-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #72777c;
}

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

.icchk-passkey-divider span {
    padding: 0 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icchk-passkey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.icchk-passkey-btn:hover {
    background: #005a87;
}

.icchk-passkey-btn:disabled {
    background: #a0a0a0;
    cursor: not-allowed;
}

.icchk-passkey-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.icchk-passkey-description {
    margin-top: 10px;
    font-size: 12px;
    color: #72777c;
}

#icchk-passkey-status {
    padding: 10px;
    font-size: 13px;
}

/* Spin animation for loading */
.dashicons-spin {
    animation: rotation 1s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
